yi-keymap-emacs-0.13.5: Emacs keymap for Yi editor

LicenseGPL-2
Maintaineryi-devel@googlegroups.com
Stabilityexperimental
Portabilityportable
Safe HaskellNone
LanguageHaskell2010

Yi.Keymap.Emacs.KillRing

Contents

Description

 

Synopsis

Documentation

uses :: MonadState s f => Getting a s a -> (a -> b) -> f b Source #

Killring actions

clipboardToKillring :: YiM () Source #

Adds system clipboard's contents on top of the killring if not already there

killringToClipboard :: YiM () Source #

Adds the top of the killring to the system clipboard

killRegion :: YiM () Source #

C-w Like killRegionB, but with system clipboard synchronization

killLineB :: Maybe Int -> BufferM () Source #

Kills current line

killLine :: Maybe Int -> YiM () Source #

C-k | Like killLineB, but with system clipboard synchronization

yankE :: EditorM () Source #

Yanks top of killbuffer

yank :: YiM () Source #

C-y Like yankE, but with system clipboard synchronization

killRingSaveE :: EditorM () Source #

Saves current selection to killring and then clears it

killRingSave :: YiM () Source #

M-w Like killRingSaveE, but with system clipboard synchronization

yankPopE :: EditorM () Source #

M-y TODO: Handle argument, verify last command was a yank