2014-04-09 08:07:12 -04:00
"============================================================"
" "
" Darkcloud Vim Config: keyboard settings "
" "
2014-06-17 01:49:46 -04:00
" By: Kevin MacMartin (prurigro@gmail.com) "
2014-04-09 08:07:12 -04:00
" Website: https://github.com/prurigro/darkcloud-vimconfig "
" "
" License: MIT "
" "
"============================================================"
2014-02-20 23:24:20 -05:00
"
2018-03-14 11:38:51 -04:00
"Aliases:
2014-06-09 17:15:05 -04:00
" :GitLog & :gitlog | (C) -> show a navigatable log of commit history
" :GitDiff & :gitdiff | (C) -> current file and last commit in vimdiff
" :GitStatus & :gitstatus | (C) -> shows the output of git status
" :GitCommit & :gitcommit | (C) -> commits changes to the current file
2014-10-26 21:45:38 -04:00
" :git <file> | (C) -> open a vert split with the file in diff mode
2014-11-06 13:17:57 -05:00
"
" :vs33 | (C) -> create a vertical split using 33% width
" :vs66 | (C) -> create a vertical split using 66% width
" :sp33 | (C) -> create a split using 33% of the height
" :sp66 | (C) -> create a split using 66% of the height
" :diff | (C) -> open a new file in diff mode
"
2014-06-09 17:15:05 -04:00
" :wsudo & :sudow | (C) -> write the file as root using sudo
" :esudo & :sudoe | (C) -> read a file as root using sudo
2014-04-09 13:04:34 -04:00
"
2014-11-06 13:17:57 -05:00
" :ik | (C) -> add following character to keywords
" :iK | (C) -> remove following character from keywords
"
2018-03-14 11:38:51 -04:00
"Mappings:
2014-03-28 22:12:13 -04:00
" (mouse)
2015-01-31 02:11:53 -05:00
" <Ctrl-ScrollUp> | (A) -> scroll right
" <Alt-ScrollUp> | (A) -> scroll right
" <Ctrl-ScrollDown> | (A) -> scroll left
" <Alt-ScrollDown> | (A) -> scroll left
2014-04-14 08:08:26 -04:00
"
2014-06-12 19:18:16 -04:00
" <MiddleClick> | (A) -> selects from the cursor
" <Ctrl-LeftClick> | (A) -> selects from the cursor
" <Alt-LeftClick> | (A) -> select the line being clicked
" <Ctrl-Alt-LeftClick> | (A) -> select the paragraph being clicked
2014-04-11 11:45:29 -04:00
"
2014-10-29 07:15:02 -04:00
" <Ctrl-RightClick> | (A) -> copy selection or character under cursor
" <Ctrl-MiddleClick> | (A) -> copy selection or character under cursor
2014-06-12 19:18:16 -04:00
"
2014-10-29 07:15:02 -04:00
" <Alt-RightClick> | (A) -> cut selection or character under cursor
" <Alt-MiddleClick> | (A) -> cut selection or character under cursor
2014-06-12 19:18:16 -04:00
"
2014-06-09 17:15:05 -04:00
" <Ctrl-Alt-RightClick> | (A) -> paste at the cursor (not mouse)
" <Ctrl-Alt-MiddleClick> | (A) -> paste at the cursor (not mouse)
2014-03-28 22:12:13 -04:00
"
2014-06-12 19:18:16 -04:00
" <Shift-MiddleClick> | (A) -> paste from xorg paste buffer
2014-04-11 11:45:29 -04:00
"
2014-03-28 22:12:13 -04:00
" (tabs)
2014-06-09 17:15:05 -04:00
" <Alt-n> | (N) -> go to the next open tab
" <Alt-p> | (N) -> go to the previous open tab
" <Alt-t> | (N) -> open a new tab
" <Alt-c> | (N) -> create a new tab with vimfiler
" <Alt-d> | (N) -> create a new tab with a double pane vimfiler
2014-03-28 22:12:13 -04:00
"
2014-10-31 01:22:22 -04:00
" (split)
" <Ctrl-w>{ | (N) -> rotate counter-clockwise
" <Ctrl-w>} | (N) -> rotate clockwise
" <Ctrl-w>] | (N) -> split vertically
2014-11-02 18:19:37 -05:00
" <Ctrl-w>0 | (N) -> create a vertical split 33% of the window
" <Ctrl-w>) | (N) -> create a vertical split 66% of the window
2014-10-31 01:22:22 -04:00
" <Ctrl-w>[ | (N) -> split horizontally
2014-11-02 18:19:37 -05:00
" <Ctrl-w>9 | (N) -> create a horizontal split 33% of the window
" <Ctrl-w>( | (N) -> create a horizontal split 66% of the window
2014-10-31 01:22:22 -04:00
"
2014-10-22 03:41:50 -04:00
" (display)
2014-10-27 07:52:44 -04:00
" <Backspace> | (N) -> reset window and clear search
2014-10-22 03:41:50 -04:00
" // | (N) -> reset window and clear search
2014-10-29 07:15:02 -04:00
" n | (N) -> center vertically on next search term
" N | (N) -> center vertically on last search term
" * | (N) -> center vertically on nth next search term
" # | (N) -> center vertically on nth last search term
2014-10-22 03:41:50 -04:00
"
2014-06-13 00:58:13 -04:00
" (toggles and features)
2014-11-06 13:17:57 -05:00
" ik | (N) -> add cursor character as a keyword
" iK | (N) -> remove cursor character as a keyword
"
2014-10-22 03:41:50 -04:00
" ~ | (N) -> popup a command reference
2014-08-25 02:38:28 -04:00
" , | (N) -> display tag information in echo area
2014-06-25 02:47:29 -04:00
" <Leader><F1> | (N) -> toggle the vim reference manual
2014-07-20 21:17:26 -04:00
" <Leader>? | (N) -> toggle the vim reference manual
2014-10-29 07:15:02 -04:00
" ` | (A) -> toggle the gutter(numbers+folds+signify)
2014-06-13 00:58:13 -04:00
"
2014-10-22 03:41:50 -04:00
" <Space><Space> | (N) -> toggle selected fold
2014-10-28 15:33:37 -04:00
" <Space>= | (N) -> open all folds
" <Space>+ | (N) -> open all folds
" <Space>- | (N) -> unopen all folds
" <Space>_ | (N) -> unopen all folds
" <Space>0 | (N) -> reset all folds using default fold level
2014-06-13 00:58:13 -04:00
"
2015-03-10 07:27:53 -04:00
" <F9> | (A) -> toggle extradite git commit history
" <Ctrl-F9> | (A) -> toggle extradite git commit history
" <Alt-F9> | (A) -> toggle extradite git commit history
" <Leader>} | (N) -> toggle extradite git commit history
2015-02-27 05:46:46 -05:00
" <F10> | (A) -> toggle the tagbar sidebar
" <Ctrl-F10> | (A) -> toggle the tagbar sidebar
" <Alt-F10> | (A) -> toggle the tagbar sidebar
2015-03-10 07:27:53 -04:00
" <Leader>{ | (N) -> toggle the tagbar sidebar
" <F12> | (A) -> toggle vimfiler sidebar
" <Ctrl-F12> | (A) -> toggle vimfiler sidebar
" <Alt-F12> | (A) -> toggle vimfiler sidebar
" <Leader>[ | (N) -> toggle vimfiler sidebar
2014-06-13 00:58:13 -04:00
"
2014-07-20 21:17:26 -04:00
" <F1> | (A) -> toggle line wrapping
2015-02-27 05:46:46 -05:00
" <Ctrl-F1> | (A) -> toggle line wrapping
" <Alt-F1> | (A) -> toggle line wrapping
2014-07-20 21:17:26 -04:00
" <F2> | (A) -> toggle spell check
2015-02-27 05:46:46 -05:00
" <Ctrl-F2> | (A) -> toggle spell check
" <Alt-F2> | (A) -> toggle spell check
2014-07-20 21:17:26 -04:00
" <F3> | (A) -> toggle external-paste mode
2015-02-27 05:46:46 -05:00
" <Ctrl-F3> | (A) -> toggle external-paste mode
" <Alt-F3> | (A) -> toggle external-paste mode
2014-07-20 21:17:26 -04:00
" <F4> | (A) -> toggle syntax checking
2015-02-27 05:46:46 -05:00
" <Ctrl-F4> | (A) -> toggle syntax checking
" <Alt-F4> | (A) -> toggle syntax checking
2014-03-28 22:12:13 -04:00
"
" (gvim toggles)
2014-07-07 16:07:14 -04:00
" <Leader><F1> | (A) -> toggle the menubar
" <Leader><F2> | (A) -> toggle the toolbar
2014-08-07 03:51:07 -04:00
" <Leader><F3> | (A) -> toggle the scrollbars
2014-06-25 02:47:29 -04:00
"
" (spellcheck)
" ?+ | (N) -> add the selected word to the local dictionary
" ?? | (N) -> show spelling suggestions for selected word
" ?N | (N) -> go to the next spelling mistake
" ?P | (N) -> go to the previous spelling mistake
2014-03-28 22:12:13 -04:00
"
2014-07-31 01:53:33 -04:00
" (copy/paste and undo/redo)
" <Leader>p | (N) -> view the paste buffers and register contents
" P | (V) -> save selection to the buffer and paste over
" p | (V) -> preserve the buffer pasting over selected text
2022-04-14 00:56:07 -04:00
" Y | (N) -> copy to the end of the line
2014-07-31 01:53:33 -04:00
"
" (delete/cut functions)
" <Leader>x | (N) -> delete the char(s) under and the cursor
" <Leader>x | (V) -> delete the currently selected text
" <Leader>X | (N) -> delete the char(s) before the cursor
" <Leader>X | (V) -> delete the currently selected lines
2014-10-29 07:15:02 -04:00
" <Leader>D | (N) -> delete from the cursor to EOL
2014-07-31 01:53:33 -04:00
" <Leader>D | (V) -> delete the currently selected lines
2014-10-29 07:15:02 -04:00
" <Leader>dw | (N) -> delete from the cursor to end of the word
" <Leader>dd | (N) -> delete current line
" <Leader>d | (V) -> delete selected text
2014-07-31 01:53:33 -04:00
"
" (improved copy and paste shortcuts)
" <Ctrl-v> | (N) -> paste from buffer
" <Ctrl-v> | (V) -> paste buffer in place of selection
" <Ctrl-v> | (I) -> paste from buffer then return to input
" <Ctrl-c> | (N) -> copy character
" <Ctrl-c> | (V) -> copy selection
" <Ctrl-x> | (N) -> cut character
" <Ctrl-x> | (V) -> cut selection
2014-07-31 02:09:34 -04:00
" <Ctrl-W> | (I) -> cut previous word during input
" <Ctrl-D> | (I) -> cut line before cursor during input
" <Ctrl-Y> | (I) -> paste what's been cut during input
2014-07-31 01:53:33 -04:00
"
2018-03-13 11:32:04 -04:00
" (fixing-and-formatting)
2014-12-10 23:26:38 -05:00
" <Leader>J | (N) -> split document into lines of tw or 80
" <Leader>J | (V) -> split selection into lines of tw or 80
2014-06-25 02:47:29 -04:00
" <Leader>f | (N) -> format document and return to cursor
" <Leader>f | (V) -> format the selection and return to cursor
2018-03-13 11:32:04 -04:00
" <Leader>F | (N) -> run available ale fixers on the document
2014-06-25 02:47:29 -04:00
" <Leader>t | (N) -> convert tabs into spaces
2014-10-22 03:41:50 -04:00
" <Leader>T | (N) -> convert spaces into tabs
" <Leader>w | (N) -> remove whitespace
2014-10-26 21:45:38 -04:00
" <Leader>c | (N) -> comment/uncomment current line
" <Leader>c | (V) -> comment/uncomment selection
2014-10-22 03:41:50 -04:00
" <Leader>A | (N) -> aligns comments using the comment symbol
2014-08-05 06:01:38 -04:00
" <Leader>A | (V) -> aligns selected comments
" <Leader>a | (N) -> aligns all comments after text
" <Leader>a | (V) -> aligns selected comments after text
2014-06-09 17:15:05 -04:00
" <Tab> | (V) -> indent all the lines currently selected
" <Tab> | (N) -> indent the current line
2014-10-22 03:41:50 -04:00
" <Leader>> | (V) -> indent all the lines currently selected
" <Leader>> | (N) -> indent the current line
" <Shift-Tab> | (V) -> un-indent all the lines currently selected
" <Shift-Tab> | (N) -> un-indent the current line
" <Leader>< | (V) -> un-indent all the lines currently selected
" <Leader>< | (N) -> un-indent the current line
2014-02-20 23:24:20 -05:00
"
2021-09-17 15:24:17 -04:00
" (macros)
" ' | (N) -> run a macro
"
2014-03-28 22:12:13 -04:00
" (movement)
2014-07-28 06:08:10 -04:00
" = | (N) -> go to the first char on the next line
" _ | (N) -> go to the first char on the previous line
2016-03-24 16:07:11 -04:00
"
2016-03-24 16:24:21 -04:00
" <Ctrl-Up> | (N) -> move four lines up
" <Ctrl-Down> | (N) -> move four lines down
" <Ctrl-Right> | (N) -> move one word right
" <Ctrl-Left> | (N) -> move one word left
"
2021-02-02 00:13:35 -05:00
" <Alt-Up> | (A) -> move the screen up
" <Alt-Down> | (A) -> move the screen down
" <Alt-Right> | (A) -> move the screen to the right
" <Alt-Left> | (A) -> move the screen to the left
2016-03-24 16:07:11 -04:00
"
2014-06-26 07:35:39 -04:00
" <Shift-Up> | (N) -> move to the beginning of the document
" <Shift-Down> | (N) -> move to the end of the document
" <Shift-Right> | (N) -> move to the end of the line
" <Shift-Left> | (N) -> move to the beginning of the non-whitespace
2014-06-09 17:15:05 -04:00
"
2021-02-02 00:13:35 -05:00
" <Shift-Ctrl-Up> | (V) -> vim-move: move a block up one line
" <Shift-Ctrl-Down> | (V) -> vim-move: move a block down one line
" <Shift-Ctrl-Up> | (N) -> vim-move: move a line up one line
" <Shift-Ctrl-Down> | (N) -> vim-move: move a line down one line
2014-06-09 17:15:05 -04:00
"
" >> | (N) -> next difference (vimdiff/signify)
" << | (N) -> previous difference (vimdiff/signify)
2014-04-07 10:04:48 -04:00
"
2014-03-28 22:12:13 -04:00
" (selection)
2014-06-09 17:15:05 -04:00
" <Ctrl-a> | (N) -> select all text
" <Ctrl-a> | (V) -> select all text
2014-04-03 06:17:16 -04:00
"
2014-06-26 07:35:39 -04:00
" <Shift-Up> | (V) -> select all text above
" <Shift-Down> | (V) -> select all text below
" <Shift-Right> | (V) -> select all text to the right
" <Shift-Left> | (V) -> select all text to the left up to the indent
2014-04-03 06:17:16 -04:00
"
2017-10-06 13:57:15 -04:00
" t | (N) -> select to the end of the word
"
2014-06-26 07:35:39 -04:00
" <Ctrl-Up> | (V) -> select four lines up
" <Ctrl-Down> | (V) -> select four lines down
" <Ctrl-Right> | (V) -> select one word right
" <Ctrl-Left> | (V) -> select one word left
2014-02-20 23:24:20 -05:00
"
2014-04-30 10:15:07 -04:00
" (remap dangerous functions that skip undo)
2014-06-09 17:15:05 -04:00
" <Ctrl-u> | (I) -> undo-able equivalent
" <Ctrl-w> | (I) -> undo-able equivalent
2014-03-28 22:12:13 -04:00
"
2018-03-14 11:38:51 -04:00
"Filetype Specific Mappings:
2014-04-09 13:04:34 -04:00
" (extradite)
2014-08-25 02:38:28 -04:00
" <Ctrl-F4> | (A) -> close the dialog
" <Alt-F4> | (A) -> close the dialog
2014-06-09 17:15:05 -04:00
" <Right> | (A) -> same as down
" l | (A) -> same as j
" <Left> | (A) -> same as Up
" h | (A) -> same as k
2014-04-09 13:04:34 -04:00
"
2014-04-05 03:20:53 -04:00
" (help)
2014-06-09 17:15:05 -04:00
" q | (A) -> close the dialog
2015-02-27 05:46:46 -05:00
" <Leader>? | (A) -> close the dialog
2014-06-09 17:15:05 -04:00
" ?> | (A) -> close the dialog
" ?< | (A) -> close the dialog
Tons of changes all in one commit because I'd broken a commit a while
back and opted to simply reverse them all- Lots of colour changes, the
update script now removes decommissioned bundles, gentags script can now
have additional paths added to it when generating a tags file, README is
much improved, fixed a few issues that required remapping some toggles,
fixed a bunch of issues with the colourscheme between the terminal and
gvim. You can now setup a custom config file to have loaded after the
darkcloud-vimconfig ones, and there's a custom location for pathogen
modules too, to make things tidier without necessarily needing to use
an additional runtimepath. You can also create a file in your home
directory to assign filetypes to programs, for use with the file
manager. A file can be placed in ~/.vim/ with file associations and
prorams to launch them with. The file manager will also open a file with
vim by hitting shift+enter, since e isn't all that comfortablly placed.
The vimrc can now also point to the darkcloud-vimconfig folder, rather
than relying on the vim folder being in a specific location, and the
after folder is now configured to work in the project too.
2014-04-04 19:49:02 -04:00
"
2014-10-14 16:13:18 -04:00
" (qf sidebar mappings)
2014-06-09 17:15:05 -04:00
" <LClick> | (A) -> left click + left justify the cursor
" <MClick> | (A) -> same as the left click
" <RClick> | (A) -> same as the left click
2014-10-14 16:13:18 -04:00
" <LClick><LClick> | (A) -> select entry
" <Space> | (A) -> select entry but remain in qf sidebar
2014-06-09 17:15:05 -04:00
" <Left> | (A) -> up
" <Right> | (A) -> down
" h | (A) -> j
" l | (A) -> k
2014-04-08 00:13:03 -04:00
"
2014-04-09 13:04:34 -04:00
" (vimdiff)
2014-06-09 17:15:05 -04:00
" <Leader><> | (N) -> update differences
2014-10-26 21:45:38 -04:00
" <Leader>,. | (N) -> update differences
2014-06-09 17:15:05 -04:00
" <Leader>>< | (N) -> update differences
2014-10-26 21:45:38 -04:00
" <Leader>., | (N) -> update differences
2014-06-09 17:15:05 -04:00
" <Leader>> | (N) -> replace diff in other pane with current pane
2014-10-22 03:41:50 -04:00
" <Leader>. | (N) -> replace diff in other pane with current pane
2014-06-09 17:15:05 -04:00
" <Leader<< | (N) -> replace diff in current pane with other pane
2014-10-22 03:41:50 -04:00
" <Leader<, | (N) -> replace diff in current pane with other pane
2014-04-07 02:40:35 -04:00
"
2014-04-09 13:04:34 -04:00
" (vimfiler)
2014-06-09 17:15:05 -04:00
" <LClick> | (A) -> left click + left justify the cursor
" <MClick> | (A) -> same as the left click
" <RClick> | (A) -> same as the left click
" <LClick><LClick> | (A) -> edit selected file
" <Right> | (A) -> map to l, which opens a directory
" <Left> | (A) -> map to h, which goes up one directory
" ' | (A) -> edit the selected file
" n | (A) -> start editing a new file
"DISABLED DEFAULT MAPPING: UNSET SHORTCUTS {{{
2014-06-13 00:58:13 -04:00
"-unmapping tabbing from < and > for use with diff
"+these commands are replaced by tab and shift+tab
2014-06-09 17:15:05 -04:00
noremap > < Nop >
noremap < < Nop >
2014-06-13 00:58:13 -04:00
"-unmapping help from F1 and Ctrl-F1 for use toggling the reference manual
2015-02-27 05:46:46 -05:00
"+the :h topic feature works, and <Leader>? displays quickref
2014-06-13 00:58:13 -04:00
map < F1 > < Nop >
2014-06-25 02:47:29 -04:00
map < A - F1 > < Nop >
2014-06-13 00:58:13 -04:00
map < C - F1 > < Nop >
2014-07-17 09:59:47 -04:00
2014-08-07 23:03:22 -04:00
"-unmap the suspend function
map < C - z > < Nop >
2015-09-18 16:09:44 -04:00
"-unmap ex mode
nnoremap Q < Nop >
2019-12-02 11:54:38 -05:00
"unmap shift+k opening help
nnoremap < S - k > < Nop >
2014-06-09 17:15:05 -04:00
"}}}
2014-02-20 23:24:20 -05:00
2014-04-09 13:04:34 -04:00
"ALIASES: COMMAND SHORTCUTS {{{
2014-11-06 13:17:57 -05:00
"shortcuts to git commands
2014-04-09 13:04:34 -04:00
cabbrev < expr > < silent > GitLog ':Extradite<CR>:wincmd x<CR>:wincmd j<CR>:resize 10<CR>'
cabbrev < expr > < silent > gitlog ':Extradite<CR>:wincmd x<CR>:wincmd j<CR>:resize 10<CR>'
2014-04-30 10:15:07 -04:00
cabbrev < expr > < silent > GitDiff ':Gdiff<CR>'
cabbrev < expr > < silent > gitdiff ':Gdiff<CR>'
cabbrev < expr > < silent > GitStatus ':Gstatus<CR>'
cabbrev < expr > < silent > gitstatus ':Gstatus<CR>'
cabbrev < expr > < silent > GitCommit ':Gcommit<CR>'
cabbrev < expr > < silent > gitcommit ':Gcommit<CR>'
2014-11-06 13:17:57 -05:00
"create various sizes of splits
2014-11-02 18:19:37 -05:00
cabbrev < expr > < silent > vs33 ':VS33<CR>'
cabbrev < expr > < silent > vs66 ':VS66<CR>'
cabbrev < expr > < silent > sp33 ':SP33<CR>'
cabbrev < expr > < silent > sp66 ':SP66<CR>'
2014-10-26 22:07:18 -04:00
cabbrev diff vertical diffsplit
2014-11-06 13:17:57 -05:00
"read/write file with sudo
2014-04-09 13:04:34 -04:00
cabbrev sudow SudoWrite
cabbrev wsudo SudoWrite
2015-02-27 05:46:46 -05:00
cabbrev ws SudoWrite
2014-04-09 13:04:34 -04:00
cabbrev sudoe SudoRead
cabbrev esudo SudoRead
2015-02-27 05:46:46 -05:00
cabbrev es SudoRead
2014-11-06 13:17:57 -05:00
"add/remove character as keyword
cabbrev ik setlocal iskeyword + =
cabbrev iK setlocal iskeyword - =
2014-04-09 13:04:34 -04:00
"}}}
2014-03-11 03:05:09 -04:00
"MAPPINGS: GENERAL KEYBINDINGS AND REBINDINGS {{{
2014-04-03 23:00:34 -04:00
"MOUSE:{
2014-04-07 00:41:03 -04:00
"hold ctrl to scroll left/right instead of up/down
2015-01-31 02:11:53 -05:00
noremap < C - ScrollWheelUp > 4 zl
2022-04-13 14:22:16 -04:00
noremap < C -2 - ScrollWheelUp > 4 zl
noremap < C -3 - ScrollWheelUp > 4 zl
noremap < C -4 - ScrollWheelUp > 4 zl
2014-06-12 19:18:16 -04:00
nnoremap < C - ScrollWheelUp > 4 zl
2022-04-13 14:22:16 -04:00
nnoremap < C -2 - ScrollWheelUp > 4 zl
nnoremap < C -3 - ScrollWheelUp > 4 zl
nnoremap < C -4 - ScrollWheelUp > 4 zl
2014-06-12 19:18:16 -04:00
xnoremap < C - ScrollWheelUp > 4 zl
2022-04-13 14:22:16 -04:00
xnoremap < C -2 - ScrollWheelUp > 4 zl
xnoremap < C -3 - ScrollWheelUp > 4 zl
xnoremap < C -4 - ScrollWheelUp > 4 zl
2015-01-22 21:42:12 -05:00
snoremap < C - ScrollWheelUp > 4 zl
2022-04-13 14:22:16 -04:00
snoremap < C -2 - ScrollWheelUp > 4 zl
snoremap < C -3 - ScrollWheelUp > 4 zl
snoremap < C -4 - ScrollWheelUp > 4 zl
2015-01-22 21:42:12 -05:00
vnoremap < C - ScrollWheelUp > 4 zl
2022-04-13 14:22:16 -04:00
vnoremap < C -2 - ScrollWheelUp > 4 zl
vnoremap < C -3 - ScrollWheelUp > 4 zl
vnoremap < C -4 - ScrollWheelUp > 4 zl
2014-04-07 00:41:03 -04:00
inoremap < C - ScrollWheelUp > < C - O > 4 zl
2022-04-13 14:22:16 -04:00
inoremap < C -2 - ScrollWheelUp > < C - O > 4 zl
inoremap < C -3 - ScrollWheelUp > < C - O > 4 zl
inoremap < C -4 - ScrollWheelUp > < C - O > 4 zl
2015-01-31 02:11:53 -05:00
noremap < A - ScrollWheelUp > 4 zl
2022-04-13 14:22:16 -04:00
noremap < A -2 - ScrollWheelUp > 4 zl
noremap < A -3 - ScrollWheelUp > 4 zl
noremap < A -4 - ScrollWheelUp > 4 zl
2015-01-31 02:11:53 -05:00
nnoremap < A - ScrollWheelUp > 4 zl
2022-04-13 14:22:16 -04:00
nnoremap < A -2 - ScrollWheelUp > 4 zl
nnoremap < A -3 - ScrollWheelUp > 4 zl
nnoremap < A -4 - ScrollWheelUp > 4 zl
2015-01-31 02:11:53 -05:00
xnoremap < A - ScrollWheelUp > 4 zl
2022-04-13 14:22:16 -04:00
xnoremap < A -2 - ScrollWheelUp > 4 zl
xnoremap < A -3 - ScrollWheelUp > 4 zl
xnoremap < A -4 - ScrollWheelUp > 4 zl
2015-01-31 02:11:53 -05:00
snoremap < A - ScrollWheelUp > 4 zl
2022-04-13 14:22:16 -04:00
snoremap < A -2 - ScrollWheelUp > 4 zl
snoremap < A -3 - ScrollWheelUp > 4 zl
snoremap < A -4 - ScrollWheelUp > 4 zl
2015-01-31 02:11:53 -05:00
vnoremap < A - ScrollWheelUp > 4 zl
2022-04-13 14:22:16 -04:00
vnoremap < A -2 - ScrollWheelUp > 4 zl
vnoremap < A -3 - ScrollWheelUp > 4 zl
vnoremap < A -4 - ScrollWheelUp > 4 zl
2015-01-31 02:11:53 -05:00
inoremap < A - ScrollWheelUp > < C - O > 4 zl
2022-04-13 14:22:16 -04:00
inoremap < A -2 - ScrollWheelUp > < C - O > 4 zl
inoremap < A -3 - ScrollWheelUp > < C - O > 4 zl
inoremap < A -4 - ScrollWheelUp > < C - O > 4 zl
2015-01-22 21:42:12 -05:00
2015-01-31 02:11:53 -05:00
noremap < C - ScrollWheelDown > 4 zh
2022-04-13 14:22:16 -04:00
noremap < C -2 - ScrollWheelDown > 4 zh
noremap < C -3 - ScrollWheelDown > 4 zh
noremap < C -4 - ScrollWheelDown > 4 zh
2014-06-12 19:18:16 -04:00
nnoremap < C - ScrollWheelDown > 4 zh
2022-04-13 14:22:16 -04:00
nnoremap < C -2 - ScrollWheelDown > 4 zh
nnoremap < C -3 - ScrollWheelDown > 4 zh
nnoremap < C -4 - ScrollWheelDown > 4 zh
2014-06-12 19:18:16 -04:00
xnoremap < C - ScrollWheelDown > 4 zh
2022-04-13 14:22:16 -04:00
xnoremap < C -2 - ScrollWheelDown > 4 zh
xnoremap < C -3 - ScrollWheelDown > 4 zh
xnoremap < C -4 - ScrollWheelDown > 4 zh
2015-01-22 21:42:12 -05:00
snoremap < C - ScrollWheelDown > 4 zh
2022-04-13 14:22:16 -04:00
snoremap < C -2 - ScrollWheelDown > 4 zh
snoremap < C -3 - ScrollWheelDown > 4 zh
snoremap < C -4 - ScrollWheelDown > 4 zh
2015-01-22 21:42:12 -05:00
vnoremap < C - ScrollWheelDown > 4 zh
2022-04-13 14:22:16 -04:00
vnoremap < C -2 - ScrollWheelDown > 4 zh
vnoremap < C -3 - ScrollWheelDown > 4 zh
vnoremap < C -4 - ScrollWheelDown > 4 zh
2014-04-07 00:41:03 -04:00
inoremap < C - ScrollWheelDown > < C - O > 4 zh
2022-04-13 14:22:16 -04:00
inoremap < C -2 - ScrollWheelDown > < C - O > 4 zh
inoremap < C -3 - ScrollWheelDown > < C - O > 4 zh
inoremap < C -4 - ScrollWheelDown > < C - O > 4 zh
2015-01-31 02:11:53 -05:00
noremap < A - ScrollWheelDown > 4 zh
2022-04-13 14:22:16 -04:00
noremap < A -2 - ScrollWheelDown > 4 zh
noremap < A -3 - ScrollWheelDown > 4 zh
noremap < A -4 - ScrollWheelDown > 4 zh
2015-01-31 02:11:53 -05:00
nnoremap < A - ScrollWheelDown > 4 zh
2022-04-13 14:22:16 -04:00
nnoremap < A -2 - ScrollWheelDown > 4 zh
nnoremap < A -3 - ScrollWheelDown > 4 zh
nnoremap < A -4 - ScrollWheelDown > 4 zh
2015-01-31 02:11:53 -05:00
xnoremap < A - ScrollWheelDown > 4 zh
2022-04-13 14:22:16 -04:00
xnoremap < A -2 - ScrollWheelDown > 4 zh
xnoremap < A -3 - ScrollWheelDown > 4 zh
xnoremap < A -4 - ScrollWheelDown > 4 zh
2015-01-31 02:11:53 -05:00
snoremap < A - ScrollWheelDown > 4 zh
2022-04-13 14:22:16 -04:00
snoremap < A -2 - ScrollWheelDown > 4 zh
snoremap < A -3 - ScrollWheelDown > 4 zh
snoremap < A -4 - ScrollWheelDown > 4 zh
2015-01-31 02:11:53 -05:00
vnoremap < A - ScrollWheelDown > 4 zh
2022-04-13 14:22:16 -04:00
vnoremap < A -2 - ScrollWheelDown > 4 zh
vnoremap < A -3 - ScrollWheelDown > 4 zh
vnoremap < A -4 - ScrollWheelDown > 4 zh
2015-01-31 02:11:53 -05:00
inoremap < A - ScrollWheelDown > < C - O > 4 zh
2022-04-13 14:22:16 -04:00
inoremap < A -2 - ScrollWheelDown > < C - O > 4 zh
inoremap < A -3 - ScrollWheelDown > < C - O > 4 zh
inoremap < A -4 - ScrollWheelDown > < C - O > 4 zh
2014-04-11 11:45:29 -04:00
2014-06-12 19:18:16 -04:00
"middle & ctrl+left = select from cursor
nnoremap < MiddleMouse > < RightMouse >
xnoremap < MiddleMouse > < RightMouse >
2015-01-22 21:42:12 -05:00
snoremap < MiddleMouse > < RightMouse >
vnoremap < MiddleMouse > < RightMouse >
2014-06-16 01:52:53 -04:00
inoremap < MiddleMouse > < RightMouse >
2015-01-22 21:42:12 -05:00
2014-06-12 19:18:16 -04:00
nnoremap < C - LeftMouse > < RightMouse >
xnoremap < C - LeftMouse > < RightMouse >
2015-01-22 21:42:12 -05:00
snoremap < C - LeftMouse > < RightMouse >
vnoremap < C - LeftMouse > < RightMouse >
2014-06-16 01:52:53 -04:00
inoremap < C - LeftMouse > < RightMouse >
2014-06-12 19:18:16 -04:00
"alt+left = line
nnoremap < A - LeftMouse > < LeftMouse > V
xnoremap < A - LeftMouse > < RightMouse > $
2015-01-22 21:42:12 -05:00
snoremap < A - LeftMouse > < RightMouse > $
vnoremap < A - LeftMouse > < RightMouse > $
2014-06-12 19:18:16 -04:00
inoremap < A - LeftMouse > < Esc > < LeftMouse > V
2014-04-11 11:45:29 -04:00
2014-06-12 19:18:16 -04:00
"ctrl+alt+left = select paragraph
nnoremap < C - A - LeftMouse > < LeftMouse > vip
xnoremap < C - A - LeftMouse > < RightMouse > ip $
2015-01-22 21:42:12 -05:00
snoremap < C - A - LeftMouse > < RightMouse > ip $
vnoremap < C - A - LeftMouse > < RightMouse > ip $
2014-06-12 19:18:16 -04:00
inoremap < C - A - LeftMouse > < Esc > < LeftMouse > vip
"ctrl+(middle/right) = copy
2014-04-18 05:12:35 -04:00
nnoremap < C - RightMouse > < LeftMouse > Vy
2015-01-22 21:42:12 -05:00
xnoremap < C - RightMouse > y
snoremap < C - RightMouse > y
2014-04-18 05:12:35 -04:00
vnoremap < C - RightMouse > y
2014-06-12 19:18:16 -04:00
inoremap < C - RightMouse > < C -0 > y
2015-01-22 21:42:12 -05:00
2014-06-12 19:18:16 -04:00
nnoremap < C - MiddleMouse > < LeftMouse > Vy
2015-01-22 21:42:12 -05:00
xnoremap < C - MiddleMouse > y
snoremap < C - MiddleMouse > y
2014-04-18 05:12:35 -04:00
vnoremap < C - MiddleMouse > y
2014-06-12 19:18:16 -04:00
inoremap < C - MiddleMouse > < C -0 > y
2014-04-18 05:12:35 -04:00
2014-06-12 19:18:16 -04:00
"alt+(middle/right) = cut
2014-04-18 05:12:35 -04:00
nnoremap < A - RightMouse > x
xnoremap < A - RightMouse > x
2015-01-22 21:42:12 -05:00
snoremap < A - RightMouse > x
vnoremap < A - RightMouse > x
2014-04-18 05:12:35 -04:00
inoremap < A - RightMouse > < C - O > x
2015-01-22 21:42:12 -05:00
2014-06-12 19:18:16 -04:00
nnoremap < A - MiddleMouse > x
xnoremap < A - MiddleMouse > x
2015-01-22 21:42:12 -05:00
snoremap < A - MiddleMouse > x
vnoremap < A - MiddleMouse > x
2014-04-18 05:12:35 -04:00
inoremap < A - MiddleMouse > < C - O > x
2014-06-12 19:18:16 -04:00
"ctrl+alt+(middle/right) = paste
2014-04-18 05:12:35 -04:00
nnoremap < C - A - RightMouse > p
xnoremap < C - A - RightMouse > p
2015-01-22 21:42:12 -05:00
snoremap < C - A - RightMouse > p
vnoremap < C - A - RightMouse > p
2014-04-18 05:12:35 -04:00
inoremap < C - A - RightMouse > < C - O > p
2015-01-22 21:42:12 -05:00
2014-06-12 19:18:16 -04:00
nnoremap < C - A - MiddleMouse > p
xnoremap < C - A - MiddleMouse > p
2015-01-22 21:42:12 -05:00
snoremap < C - A - MiddleMouse > p
vnoremap < C - A - MiddleMouse > p
2014-04-18 05:12:35 -04:00
inoremap < C - A - MiddleMouse > < C - O > p
2014-06-12 19:18:16 -04:00
"configure middle click to paste from X
noremap < S - Insert > < MiddleMouse >
noremap ! < S - Insert > < MiddleMouse >
2014-04-03 23:00:34 -04:00
"}
"TABS:{
2014-06-03 22:07:16 -04:00
nnoremap < silent > < expr > < A - n > ':tabnext<CR>'
nnoremap < silent > < expr > < A - p > ':tabprev<CR>'
nnoremap < silent > < expr > < A - t > ':tabnew<CR>'
2014-06-09 17:15:05 -04:00
nnoremap < silent > < expr > < A - c > ':VimFiler -tab -project<CR>'
2014-06-03 22:07:16 -04:00
nnoremap < silent > < expr > < A - d > ':VimFiler -tab -project -double<CR>'
2014-04-03 23:00:34 -04:00
"}
2014-10-31 01:22:22 -04:00
"SPLIT:{
nmap < expr > < silent > < C - w > { ':wincmd R<CR>'
nmap < expr > < silent > < C - w > } ':wincmd r<CR>'
nmap < expr > < silent > < C - w > ] ':vs<CR>'
2014-11-02 18:19:37 -05:00
nmap < expr > < silent > < C - w > 0 ':VS33<CR>'
nmap < expr > < silent > < C - w > ) ':VS66<CR>'
2014-10-31 01:22:22 -04:00
nmap < expr > < silent > < C - w > [ ':sp<CR>:wincmd j<CR>'
2014-11-02 18:19:37 -05:00
nmap < expr > < silent > < C - w > 9 ':SP33<CR>'
nmap < expr > < silent > < C - w > ( ':SP66<CR>'
2014-10-31 01:22:22 -04:00
"}
2014-10-22 03:41:50 -04:00
"DISPLAY:{
"clear search and reset buffer
2014-10-27 07:52:44 -04:00
nnoremap < silent > < expr > < BackSpace > ':noh<CR>:redraw!<CR>'
2014-10-22 03:41:50 -04:00
nnoremap < silent > < expr > // ':noh<CR>:redraw!<CR>'
2014-10-29 07:15:02 -04:00
"keep the currently highlighted term in a search vertically centered
nnoremap < silent > n nzz
nnoremap < silent > N Nzz
nnoremap < silent > * *zz
nnoremap < silent > # #zz
2014-10-22 03:41:50 -04:00
"}
2014-06-13 00:58:13 -04:00
"TOGGLES AND FEATURES:{
2014-11-06 13:17:57 -05:00
"add/remove cursor character as a keyword
nmap < expr > < silent > < Leader > k ':execute "setlocal iskeyword+=".getline(".")[col(".")-1]<CR>:echo "The character ".getline(".")[col(".")-1]." has been added to iskeyword"<CR>'
nmap < expr > < silent > < Leader > K ':execute "setlocal iskeyword-=".getline(".")[col(".")-1]<CR>:echo "The character ".getline(".")[col(".")-1]." has been removed from iskeyword"<CR>'
2018-03-13 22:50:50 -04:00
"toggle the location list
nnoremap < silent > < expr > < Leader > < Leader > ':call ToggleLocationList()<CR>'
2014-07-22 22:56:22 -04:00
"toggle the command reference box
2014-10-22 03:41:50 -04:00
nnoremap < silent > < expr > ~ ':TCommand<CR>'
2014-07-22 22:56:22 -04:00
2014-08-25 02:38:28 -04:00
"display tag information in the gutter
noremap < buffer > < silent > < expr > , ':TTagechoWord<CR>'
2014-06-13 00:58:13 -04:00
"toggle the vim reference manual
2014-07-20 21:17:26 -04:00
nnoremap < silent > < expr > < Leader > ? ':h index.txt<CR>'
2014-04-07 00:41:03 -04:00
2014-06-13 00:58:13 -04:00
"toggle the display of the left gutter
2020-07-13 17:19:23 -04:00
nnoremap < silent > < expr > ` ':if (&number)<Bar>set nonumber<Bar>if (&foldenable)<Bar>set nofoldenable<Bar>endif<Bar>if exists("b:sy")<Bar>SignifyDisable<Bar>endif<Bar>else<Bar>set number<Bar>if !(&foldenable)<Bar>set foldenable<Bar>endif<Bar>if exists("b:sy")<Bar>SignifyEnable<Bar>endif<Bar>endif<CR>:echo "gutter visibility toggled"<CR>'
2014-04-07 00:41:03 -04:00
"toggle folded code at foldpoints
2014-10-22 03:41:50 -04:00
nnoremap < Space > < Space > za
2014-04-07 00:41:03 -04:00
2014-06-13 00:58:13 -04:00
"open all folds
2014-10-22 03:41:50 -04:00
nnoremap < silent > < expr > < Space > = 'zn:echo "all folds have been opened"<CR>'
nnoremap < silent > < expr > < Space > + 'zn:echo "all folds have been opened"<CR>'
2014-04-07 00:41:03 -04:00
2014-06-13 00:58:13 -04:00
"close folds set to be closed
2014-10-28 15:33:37 -04:00
nnoremap < silent > < expr > < Space > - 'zN:echo "all opened folds have been closed"<CR>'
nnoremap < silent > < expr > < Space > _ 'zN:echo "all opened folds have been closed"<CR>'
2014-04-07 00:41:03 -04:00
2014-06-13 00:58:13 -04:00
"reset all folds to the default fold level
2014-10-28 15:33:37 -04:00
nnoremap < silent > < expr > < Space > 0 'zX:echo "all folds have been reset"<CR>'
2014-04-07 00:41:03 -04:00
2015-03-10 07:27:53 -04:00
"view commit history and diffs
2018-03-13 11:32:04 -04:00
nnoremap < expr > < silent > < F9 > ':Extradite!<CR>:resize 10<CR>:wincmd x<CR>:wincmd b<CR>:wincmd H<CR>:wincmd b<CR>'
xnoremap < expr > < silent > < F9 > '<Esc>:Extradite!<CR>:resize 10<CR>:wincmd x<CR>:wincmd b<CR>:wincmd H<CR>:wincmd b<CR>'
inoremap < expr > < silent > < F9 > '<Esc>:Extradite!<CR>:resize 10<CR>:wincmd x<CR>:wincmd b<CR>:wincmd H<CR>:wincmd b<CR>'
nnoremap < expr > < silent > < C - F9 > ':Extradite!<CR>:resize 10<CR>:wincmd x<CR>:wincmd b<CR>:wincmd H<CR>:wincmd b<CR>'
xnoremap < expr > < silent > < C - F9 > '<Esc>:Extradite!<CR>:resize 10<CR>:wincmd x<CR>:wincmd b<CR>:wincmd H<CR>:wincmd b<CR>'
inoremap < expr > < silent > < C - F9 > '<Esc>:Extradite!<CR>:resize 10<CR>:wincmd x<CR>:wincmd b<CR>:wincmd H<CR>:wincmd b<CR>'
nnoremap < expr > < silent > < A - F9 > ':Extradite!<CR>:resize 10<CR>:wincmd x<CR>:wincmd b<CR>:wincmd H<CR>:wincmd b<CR>'
xnoremap < expr > < silent > < A - F9 > '<Esc>:Extradite!<CR>:resize 10<CR>:wincmd x<CR>:wincmd b<CR>:wincmd H<CR>:wincmd b<CR>'
inoremap < expr > < silent > < A - F9 > '<Esc>:Extradite!<CR>:resize 10<CR>:wincmd x<CR>:wincmd b<CR>:wincmd H<CR>:wincmd b<CR>'
nnoremap < silent > < expr > < Leader > } ':Extradite!<CR>:resize 10<CR>:wincmd x<CR>:wincmd b<CR>:wincmd H<CR>:wincmd b<CR>'
2014-04-07 12:05:52 -04:00
2014-04-07 00:41:03 -04:00
"bindings to trigger the tagbar list of tags
2015-02-27 05:46:46 -05:00
nnoremap < silent > < expr > < F10 > ':TagbarToggle<CR>:echo "tagbar toggled"<CR>'
xnoremap < silent > < expr > < F10 > '<Esc>:TagbarToggle<CR>gv'
inoremap < silent > < expr > < F10 > '<C-O>:TagbarToggle<CR>'
nnoremap < silent > < expr > < C - F10 > ':TagbarToggle<CR>:echo "tagbar toggled"<CR>'
xnoremap < silent > < expr > < C - F10 > '<Esc>:TagbarToggle<CR>gv'
inoremap < silent > < expr > < C - F10 > '<C-O>:TagbarToggle<CR>'
nnoremap < silent > < expr > < A - F10 > ':TagbarToggle<CR>:echo "tagbar toggled"<CR>'
xnoremap < silent > < expr > < A - F10 > '<Esc>:TagbarToggle<CR>gv'
inoremap < silent > < expr > < A - F10 > '<C-O>:TagbarToggle<CR>'
2015-03-10 07:27:53 -04:00
nnoremap < silent > < expr > < Leader > { ':TagbarToggle<CR>:echo "tagbar toggled"<CR>'
2014-04-07 00:41:03 -04:00
2015-03-10 07:27:53 -04:00
"trigger vimfiler
nnoremap < silent > < expr > < F12 > ':VimFiler -split -simple -toggle -no-quit -direction=topleft -winwidth=45<CR>'
xnoremap < silent > < expr > < F12 > '<Esc>:VimFiler -split -simple -toggle -no-quit -direction=topleft -winwidth=45<CR>'
inoremap < silent > < expr > < F12 > '<Esc>:VimFiler -split -simple -toggle -no-quit -direction=topleft -winwidth=45<CR>'
nnoremap < silent > < expr > < C - F12 > ':VimFiler -split -simple -toggle -no-quit -direction=topleft -winwidth=45<CR>'
xnoremap < silent > < expr > < C - F12 > '<Esc>:VimFiler -split -simple -toggle -no-quit -direction=topleft -winwidth=45<CR>'
inoremap < silent > < expr > < C - F12 > '<Esc>:VimFiler -split -simple -toggle -no-quit -direction=topleft -winwidth=45<CR>'
nnoremap < silent > < expr > < A - F12 > ':VimFiler -split -simple -toggle -no-quit -direction=topleft -winwidth=45<CR>'
xnoremap < silent > < expr > < A - F12 > '<Esc>:VimFiler -split -simple -toggle -no-quit -direction=topleft -winwidth=45<CR>'
inoremap < silent > < expr > < A - F12 > '<Esc>:VimFiler -split -simple -toggle -no-quit -direction=topleft -winwidth=45<CR>'
nnoremap < silent > < expr > < Leader > [ ':VimFiler -split -simple -toggle -no-quit -direction=topleft -winwidth=45<CR>'
2015-02-27 05:46:46 -05:00
2014-06-13 00:58:13 -04:00
"toggle line wrapping (and bottom bar if using the gui)
2014-07-20 21:17:26 -04:00
nnoremap < silent > < expr > < F1 > ':set wrap!<CR>:echo "line wrapping toggled"<CR>'
xnoremap < silent > < expr > < F1 > '<Esc>:set wrap!<CR>gv'
inoremap < silent > < expr > < F1 > '<C-O>:set wrap!<CR>'
2015-02-27 05:46:46 -05:00
nnoremap < silent > < expr > < C - F1 > ':set wrap!<CR>:echo "line wrapping toggled"<CR>'
xnoremap < silent > < expr > < C - F1 > '<Esc>:set wrap!<CR>gv'
inoremap < silent > < expr > < C - F1 > '<C-O>:set wrap!<CR>'
nnoremap < silent > < expr > < A - F1 > ':set wrap!<CR>:echo "line wrapping toggled"<CR>'
xnoremap < silent > < expr > < A - F1 > '<Esc>:set wrap!<CR>gv'
inoremap < silent > < expr > < A - F1 > '<C-O>:set wrap!<CR>'
2014-06-17 08:19:40 -04:00
2014-07-26 03:14:40 -04:00
"toggle show spelling errors
2015-05-07 12:37:40 -04:00
nnoremap < silent > < expr > < F2 > ':set spell!<CR>:if &spell =~ "0"<Bar>echo "spellcheck toggled off"<Bar>else<Bar>echo "spellcheck toggled on"<Bar>endif<CR>'
2014-07-20 21:17:26 -04:00
xnoremap < silent > < expr > < F2 > '<Esc>:set spell!<CR>gv'
inoremap < silent > < expr > < F2 > '<C-O>:set spell!<CR>'
2015-05-07 12:37:40 -04:00
nnoremap < silent > < expr > < C - F2 > ':set spell!<CR>:if &spell =~ "0"<Bar>echo "spellcheck toggled off"<Bar>else<Bar>echo "spellcheck toggled on"<Bar>endif<CR>'
2015-02-27 05:46:46 -05:00
xnoremap < silent > < expr > < C - F2 > '<Esc>:set spell!<CR>gv'
inoremap < silent > < expr > < C - F2 > '<C-O>:set spell!<CR>'
2015-05-07 12:37:40 -04:00
nnoremap < silent > < expr > < A - F2 > ':set spell!<CR>:if &spell =~ "0"<Bar>echo "spellcheck toggled off"<Bar>else<Bar>echo "spellcheck toggled on"<Bar>endif<CR>'
2015-02-27 05:46:46 -05:00
xnoremap < silent > < expr > < A - F2 > '<Esc>:set spell!<CR>gv'
inoremap < silent > < expr > < A - F2 > '<C-O>:set spell!<CR>'
2014-06-13 00:58:13 -04:00
2014-06-17 08:19:40 -04:00
"toggle external-paste mode
2014-07-20 21:17:26 -04:00
set pastetoggle = < F3 >
"toggle syntax checking
2018-03-13 22:50:50 -04:00
function ! ToggleAle ( )
ALEToggle
if g :ale_enabled
set scl = yes
else
set scl = auto
endif
endfunction
nnoremap < silent > < expr > < F4 > ':call ToggleAle()<CR>'
xnoremap < silent > < expr > < F4 > '<Esc>:call ToggleAle()<CR>gv'
inoremap < silent > < expr > < F4 > '<C-O>:call ToggleAle()<CR>'
nnoremap < silent > < expr > < C - F4 > ':call ToggleAle()<CR>'
xnoremap < silent > < expr > < C - F4 > '<Esc>:call ToggleAle()<CR>gv'
inoremap < silent > < expr > < C - F4 > '<C-O>:call ToggleAle()<CR>'
nnoremap < silent > < expr > < A - F4 > ':call ToggleAle()<CR>'
xnoremap < silent > < expr > < A - F4 > '<Esc>:call ToggleAle()<CR>gv'
inoremap < silent > < expr > < A - F4 > '<C-O>:call ToggleAle()<CR>'
2014-04-03 23:00:34 -04:00
"}
"GVIM TOGGLES:{
2014-06-25 02:47:29 -04:00
"toggle the menu
2014-07-07 16:07:14 -04:00
nnoremap < silent > < expr > < Leader > < F1 > ":if &go=~#'m'<Bar>set go-=m<Bar>else<Bar>set go+=m<Bar>endif<CR>:echo 'Menu bar toggled'<CR>"
vnoremap < silent > < expr > < Leader > < F1 > "<Esc>:if &go=~#'m'<Bar>set go-=m<Bar>else<Bar>set go+=m<Bar>endif<CR>gv"
inoremap < silent > < expr > < Leader > < F1 > "<C-O>:if &go=~#'m'<Bar>set go-=m<Bar>else<Bar>set go+=m<Bar>endif<CR>"
2014-06-25 02:47:29 -04:00
"toggle the toolbar
2014-07-07 16:07:14 -04:00
nnoremap < silent > < expr > < Leader > < F2 > ":if &go=~#'T'<Bar>set go-=T<Bar>else<Bar>set go+=T<Bar>endif<CR>:echo 'Toolbar toggled'<CR>"
vnoremap < silent > < expr > < Leader > < F2 > "<Esc>:if &go=~#'T'<Bar>set go-=T<Bar>else<Bar>set go+=T<Bar>endif<CR>gv"
inoremap < silent > < expr > < Leader > < F2 > "<C-O>:if &go=~#'T'<Bar>set go-=T<Bar>else<Bar>set go+=T<Bar>endif<CR>"
2014-08-07 03:51:07 -04:00
"toggle the scrollbars
nnoremap < silent > < expr > < Leader > < F3 > ":if &go=~#'l'<Bar>set go-=lRb<Bar>else<Bar>set go+=lRb<Bar>endif<CR>:echo 'Scrollbars toggled'<CR>"
vnoremap < silent > < expr > < Leader > < F3 > "<Esc>:if &go=~#'l'<Bar>set go-=lRb<Bar>else<Bar>set go+=lRb<Bar>endif<CR>gv"
inoremap < silent > < expr > < Leader > < F3 > "<C-O>:if &go=~#'l'<Bar>set go-=lRb<Bar>else<Bar>set go+=lRb<Bar>endif<CR>"
2014-06-25 02:47:29 -04:00
"}
"SPELLCHECK:{
"add the selected mispelled word to the local dictionary
nnoremap ?+ zg
"display a list of suggestions for the selected mispelled word
2020-12-18 12:02:33 -05:00
nnoremap ?? hea < C - X > s
2014-06-25 02:47:29 -04:00
"go to the next mispelled word
nnoremap ?N ]s
"go to the previous mispelled word
nnoremap ?P [s
2014-04-03 23:00:34 -04:00
"}
2014-07-31 01:53:33 -04:00
"COPY PASTE AND UNDO REDO:{
"display contents of paste buffers
nnoremap < silent > < expr > < Leader > p ':reg<CR>'
"P pastes and replaces the buffer, p pastes and keeps it
vnoremap P p
xmap p < Plug > ReplaceWithRegisterVisual
"copy to the end of the line
2022-04-14 00:56:07 -04:00
nnoremap Y vg_y
2014-07-31 01:53:33 -04:00
"Alternatives to cut/deletion commands that don't replace the buffer
nnoremap < Leader > x "_x
vnoremap < Leader > x "_x
nnoremap < Leader > X "_X
vnoremap < Leader > X "_X
nnoremap < Leader > D "_D
vnoremap < Leader > D "_D
nnoremap < Leader > dd "_dd
nnoremap < Leader > dw "_dw
vnoremap < Leader > d "_d
"map copy/paste shortcuts to more typical ones
nnoremap < C - v > P
xmap < C - v > < Plug > ReplaceWithRegisterVisual
inoremap < C - v > < C - O > p
2014-10-22 04:14:40 -04:00
nnoremap < C - c > vy
2014-07-31 01:53:33 -04:00
vnoremap < C - c > y
nnoremap < C - x > x
vnoremap < C - x > x
2014-07-31 02:09:34 -04:00
inoremap < silent > < C - W > < C - \> < C - O > db
inoremap < silent > < C - D > < C - \> < C - O > d0
inoremap < silent > < C - Y > < C - R > "
2014-07-31 01:53:33 -04:00
"remap ctrl-u and ctrl-w to safer alternatives
2014-07-31 01:57:01 -04:00
inoremap < C - u > < C - g > u < C - u >
inoremap < C - w > < C - g > u < C - w >
2014-07-31 01:53:33 -04:00
"}
2018-03-13 11:32:04 -04:00
"FIXING AND FORMATTING:{
2014-10-21 11:04:17 -04:00
"format width to text width (or 80 chars if text width is 0)
nnoremap < silent > < expr > < Leader > J ':let b:tw=&textwidth<CR>:if (b:tw == 0)<Bar>set tw=80<Bar>endif<CR>gg0vG$gq:if (b:tw == 0)<Bar>set tw=0<Bar>let b:tw=80<Bar>endif<CR>:echo "Document has been formatted to a width of ".b:tw." characters"<CR>'
vnoremap < silent > < expr > < Leader > J '<Esc>:let b:tw=&textwidth<CR>:if (b:tw == 0)<Bar>set tw=80<Bar>endif<CR>gvgq:if (b:tw == 0)<Bar>set tw=0<Bar>let b:tw=80<Bar>endif<CR>:echo "Selection has been formatted to a width of ".b:tw." characters"<CR>'
2018-03-13 11:32:04 -04:00
"format by Vim syntax
2014-06-25 02:47:29 -04:00
nnoremap < Leader > f mzgg = G `z < CR > :echo "The document has been formatted" < CR >
vnoremap < Leader > f mz = `z < CR > :echo "The selection has been formatted" < CR >
2014-10-21 11:04:17 -04:00
2018-03-13 11:32:04 -04:00
"fix with ale
nnoremap < silent > < expr > < Leader > F ':ALEFix<CR>:echo "Available ale fixers have been run on the document"<CR>'
2014-10-22 03:41:50 -04:00
"convert tabs to spaces and spaces to tabs
2015-04-06 12:36:19 -04:00
nnoremap < silent > < expr > < Leader > t ':let b:et=&expandtab<CR>:set expandtab<CR>:retab!<CR>:let &expandtab=b:et<CR>:echo "Tabs have been converted to spaces"<CR>'
nnoremap < silent > < expr > < Leader > T ':let b:et=&expandtab<CR>:set noexpandtab<CR>:%retab!<CR>:let &expandtab=b:et<CR>:echo "Spaces have been converted to tabs"<CR>'
2014-10-22 03:41:50 -04:00
"remove trailing whitespace
2014-06-25 02:47:29 -04:00
nnoremap < silent > < expr > < Leader > w ':FixWhitespace<CR>:echo "Trailing whitespace has been removed"<CR>'
2014-10-21 11:04:17 -04:00
2014-10-26 21:45:38 -04:00
"commant/uncomment current line/selection using tcomment
nmap < Leader > c gcc
vmap < Leader > c gc
2014-10-21 11:04:17 -04:00
"align comments
2014-10-22 03:41:50 -04:00
nnoremap < Leader > A :exe "%Tabular" '/^[^' .matchstr ( &commentstring , '[^%]*' ) .']*\zs' .matchstr ( &commentstring , '[^%]*' ) .'.*' < CR > :redraw ! < CR >
vnoremap < Leader > A < C - u > :exe "'<,'>Tabular" '/^[^' .matchstr ( &commentstring , '[^%]*' ) .']*\zs' .matchstr ( &commentstring , '[^%]*' ) .'.*' < CR > :redraw ! < CR >
"align only comments following non-comments
nnoremap < Leader > a :exe "%Tabular" '/^ *[^' .matchstr ( &commentstring , '[^%]*' ) .' ][^\' .matchstr ( &commentstring , '[^%]*' ) .']*\zs' .matchstr ( &commentstring , '[^%]*' ) .'.*' < CR > :redraw ! < CR >
vnoremap < Leader > a < C - u > :exe "'<,'>Tabular" '/^ *[^' .matchstr ( &commentstring , '[^%]*' ) .' ][^\' .matchstr ( &commentstring , '[^%]*' ) .']*\zs' .matchstr ( &commentstring , '[^%]*' ) .'.*' < CR > :redraw ! < CR >
2014-04-07 00:41:03 -04:00
2014-10-22 03:41:50 -04:00
"tab/<Leader>> and untab/<Leader>< the currently selected lines
2014-04-07 00:41:03 -04:00
vnoremap < Tab > > gv
nnoremap < Tab > v > gv < Esc >
2014-10-22 03:41:50 -04:00
vnoremap < Leader > > > gv
nnoremap < Leader > > v > gv < Esc >
2014-04-07 00:41:03 -04:00
vnoremap < S - Tab > < gv
nnoremap < S - Tab > v < gv < Esc >
2014-10-22 03:41:50 -04:00
vnoremap < Leader > < < gv
nnoremap < Leader > < v < gv < Esc >
2014-04-03 23:00:34 -04:00
"}
2021-09-17 15:24:17 -04:00
"MACROS:{
nnoremap ' @
"}
2014-04-03 23:00:34 -04:00
"MOVEMENT:{
2014-04-07 00:41:03 -04:00
"additional mappings for easier access
nnoremap = +
2014-07-28 06:08:10 -04:00
nnoremap _ -
2014-04-07 00:41:03 -04:00
2016-03-24 16:07:11 -04:00
"map ctrl+direction to shifting the screen in that direction
2016-03-24 16:24:21 -04:00
nnoremap < C - Up > 4 k
nnoremap < C - Down > 4 j
nnoremap < C - Right > < S - Right >
nnoremap < C - Left > < S - Left >
noremap < A - Up > < ScrollWheelUp >
nnoremap < A - Up > < ScrollWheelUp >
xnoremap < A - Up > < ScrollWheelUp >
snoremap < A - Up > < ScrollWheelUp >
vnoremap < A - Up > < ScrollWheelUp >
inoremap < A - Up > < ScrollWheelUp >
noremap < A - Down > < ScrollWheelDown >
nnoremap < A - Down > < ScrollWheelDown >
xnoremap < A - Down > < ScrollWheelDown >
snoremap < A - Down > < ScrollWheelDown >
vnoremap < A - Down > < ScrollWheelDown >
inoremap < A - Down > < ScrollWheelDown >
noremap < A - Right > 4 zl
nnoremap < A - Right > 4 zl
xnoremap < A - Right > 4 zl
snoremap < A - Right > 4 zl
vnoremap < A - Right > 4 zl
inoremap < A - Right > < C - O > 4 zl
noremap < A - Left > 4 zh
nnoremap < A - Left > 4 zh
xnoremap < A - Left > 4 zh
snoremap < A - Left > 4 zh
vnoremap < A - Left > 4 zh
inoremap < A - Left > < C - O > 4 zh
2014-04-07 00:41:03 -04:00
"remap keys to scroll to the end in a direction
2014-06-26 07:35:39 -04:00
nnoremap < S - Up > gg0
nnoremap < S - Down > G $
nnoremap < S - Right > $
nnoremap < S - Left > ^
2014-04-07 00:41:03 -04:00
2021-02-02 00:13:35 -05:00
"remap shift+ctrl+up/down to move blocks up/down a line with vim-move
2016-03-24 16:24:21 -04:00
vmap < S - C - Up > < Plug > MoveBlockUp
vmap < S - C - Down > < Plug > MoveBlockDown
nmap < S - C - Up > < Plug > MoveLineUp
nmap < S - C - Down > < Plug > MoveLineDown
2014-04-07 10:04:48 -04:00
2014-04-07 12:05:52 -04:00
"map signify to ]c and [c
let g :signify_mapping_next_hunk = ']c'
let g :signify_mapping_prev_hunk = '[c'
"move to next/previous difference (vimdiff/signify)
2014-04-07 10:04:48 -04:00
nmap > > ]c
nmap < < [c
2014-04-03 23:00:34 -04:00
"}
"SELECTION:{
2014-08-05 06:01:38 -04:00
"ctrl-a to select all
2014-04-07 00:41:03 -04:00
nnoremap < C - a > gg0vG $
xnoremap < C - a > < Esc > gg0vG $
2017-10-06 13:57:15 -04:00
"t to select to the end of the word
nnoremap t ve
2014-04-07 00:41:03 -04:00
"map remap keys for speedier text selection
2014-06-26 07:35:39 -04:00
xnoremap < C - Up > 4 k
xnoremap < C - Down > 4 j
xnoremap < C - Right > < S - Right >
xnoremap < C - Left > < S - Left >
2014-04-07 00:41:03 -04:00
"remap keys to select all text in one direction
2014-06-26 07:35:39 -04:00
xnoremap < S - Up > gg0
xnoremap < S - Down > G $
xnoremap < S - Right > $
xnoremap < S - Left > ^
2014-04-03 23:00:34 -04:00
"}
2014-03-28 22:12:13 -04:00
"}}}
2014-03-11 03:05:09 -04:00
Tons of changes all in one commit because I'd broken a commit a while
back and opted to simply reverse them all- Lots of colour changes, the
update script now removes decommissioned bundles, gentags script can now
have additional paths added to it when generating a tags file, README is
much improved, fixed a few issues that required remapping some toggles,
fixed a bunch of issues with the colourscheme between the terminal and
gvim. You can now setup a custom config file to have loaded after the
darkcloud-vimconfig ones, and there's a custom location for pathogen
modules too, to make things tidier without necessarily needing to use
an additional runtimepath. You can also create a file in your home
directory to assign filetypes to programs, for use with the file
manager. A file can be placed in ~/.vim/ with file associations and
prorams to launch them with. The file manager will also open a file with
vim by hitting shift+enter, since e isn't all that comfortablly placed.
The vimrc can now also point to the darkcloud-vimconfig folder, rather
than relying on the vim folder being in a specific location, and the
after folder is now configured to work in the project too.
2014-04-04 19:49:02 -04:00
"FILETYPE SPECIFIC MAPPINGS: {{{
2014-04-09 13:04:34 -04:00
"extradite
autocmd FileType extradite map < buffer > < Right > < Down >
autocmd FileType extradite map < buffer > l j
autocmd FileType extradite map < buffer > < Left > < Up >
autocmd FileType extradite map < buffer > h k
2015-03-10 07:27:53 -04:00
autocmd FileType extradite map < buffer > < F9 > q
autocmd FileType extradite map < buffer > < C - F9 > q
autocmd FileType extradite map < buffer > < A - F9 > q
autocmd FileType extradite map < buffer > < Leader > } q
2014-04-09 13:04:34 -04:00
"help
2014-04-17 12:35:49 -04:00
if ! &diff
autocmd FileType help map < buffer > < silent > < expr > q ':q<CR>'
2014-06-25 02:47:29 -04:00
autocmd FileType help map < buffer > < silent > < expr > < Leader > < F1 > ':q<CR>'
2014-07-20 23:55:42 -04:00
autocmd FileType help map < buffer > < silent > < expr > < Leader > ? ':q<CR>'
2014-04-17 12:35:49 -04:00
endif
2014-04-09 13:04:34 -04:00
2014-10-22 03:41:50 -04:00
"markdown
2019-02-25 20:23:10 -05:00
autocmd FileType markdown nnoremap < buffer > < silent > < expr > < Leader > f ':TableFormat<CR>'
autocmd FileType markdown xnoremap < buffer > < silent > < expr > < Leader > f '<Esc>:TableFormat<CR>gv'
2014-10-22 03:41:50 -04:00
"qf-sidebar
2014-04-09 13:04:34 -04:00
autocmd FileType qf map < buffer > < LeftMouse > < LeftMouse > 0
autocmd FileType qf map < buffer > < MiddleMouse > < LeftMouse >
autocmd FileType qf map < buffer > < RightMouse > < LeftMouse >
autocmd FileType qf map < buffer > < 2 - LeftMouse > < CR >
autocmd FileType qf map < buffer > < Space > < CR > < C - w > p
autocmd FileType qf map < buffer > < Left > < Up >
autocmd FileType qf map < buffer > < Right > < Down >
autocmd FileType qf map < buffer > h j
autocmd FileType qf map < buffer > l k
2014-07-26 03:14:40 -04:00
autocmd FileType qf map < buffer > < silent > < expr > q ':call ToggleQuickfixList()<CR>'
2014-04-09 13:04:34 -04:00
2014-04-07 10:04:48 -04:00
"vimdiff
2014-10-26 21:45:38 -04:00
autocmd FilterWritePre * if &diff | nmap < buffer > < silent > < expr > < Leader > < > ':diffu<CR>' | endif
autocmd FilterWritePre * if &diff | nmap < buffer > < silent > < expr > < Leader > , . ':diffu<CR>' | endif
autocmd FilterWritePre * if &diff | nmap < buffer > < silent > < expr > < Leader > > < ':diffu<CR>' | endif
autocmd FilterWritePre * if &diff | nmap < buffer > < silent > < expr > < Leader > ., ':diffu<CR>' | endif
autocmd FilterWritePre * if &diff | nmap < buffer > < Leader > > dp | endif
autocmd FilterWritePre * if &diff | nmap < buffer > < Leader > . dp | endif
autocmd FilterWritePre * if &diff | nmap < buffer > < Leader > < do | endif
autocmd FilterWritePre * if &diff | nmap < buffer > < Leader > , do | endif
2014-04-07 10:04:48 -04:00
autocmd FilterWritePre * if &diff | cabbrev q ! qall ! | endif
Tons of changes all in one commit because I'd broken a commit a while
back and opted to simply reverse them all- Lots of colour changes, the
update script now removes decommissioned bundles, gentags script can now
have additional paths added to it when generating a tags file, README is
much improved, fixed a few issues that required remapping some toggles,
fixed a bunch of issues with the colourscheme between the terminal and
gvim. You can now setup a custom config file to have loaded after the
darkcloud-vimconfig ones, and there's a custom location for pathogen
modules too, to make things tidier without necessarily needing to use
an additional runtimepath. You can also create a file in your home
directory to assign filetypes to programs, for use with the file
manager. A file can be placed in ~/.vim/ with file associations and
prorams to launch them with. The file manager will also open a file with
vim by hitting shift+enter, since e isn't all that comfortablly placed.
The vimrc can now also point to the darkcloud-vimconfig folder, rather
than relying on the vim folder being in a specific location, and the
after folder is now configured to work in the project too.
2014-04-04 19:49:02 -04:00
"vimfiler
2014-04-09 13:04:34 -04:00
autocmd FileType vimfiler map < buffer > < LeftMouse > < LeftMouse > 0
autocmd FileType vimfiler map < buffer > < MiddleMouse > < LeftMouse >
autocmd FileType vimfiler map < buffer > < RightMouse > < LeftMouse >
autocmd FileType vimfiler map < buffer > < 2 - LeftMouse > < Plug > ( vimfiler_edit_file )
autocmd FileType vimfiler map < buffer > < Right > l
autocmd FileType vimfiler map < buffer > < Left > h
autocmd FileType vimfiler map < buffer > ' e
Tons of changes all in one commit because I'd broken a commit a while
back and opted to simply reverse them all- Lots of colour changes, the
update script now removes decommissioned bundles, gentags script can now
have additional paths added to it when generating a tags file, README is
much improved, fixed a few issues that required remapping some toggles,
fixed a bunch of issues with the colourscheme between the terminal and
gvim. You can now setup a custom config file to have loaded after the
darkcloud-vimconfig ones, and there's a custom location for pathogen
modules too, to make things tidier without necessarily needing to use
an additional runtimepath. You can also create a file in your home
directory to assign filetypes to programs, for use with the file
manager. A file can be placed in ~/.vim/ with file associations and
prorams to launch them with. The file manager will also open a file with
vim by hitting shift+enter, since e isn't all that comfortablly placed.
The vimrc can now also point to the darkcloud-vimconfig folder, rather
than relying on the vim folder being in a specific location, and the
after folder is now configured to work in the project too.
2014-04-04 19:49:02 -04:00
"}}}
2014-10-22 03:41:50 -04:00
"MAPPINGS DISABLED FOR GIVEN FILETYPES: {{{
2014-04-09 13:04:34 -04:00
"remove incompatible toggles from specific file types
2020-01-30 00:14:57 -05:00
autocmd Filetype extradite , help , tagbar , qf , vimfiler noremap < buffer > ` < Nop >
autocmd Filetype help , tagbar , qf , vimfiler , diff noremap < buffer > < F9 > < Nop >
autocmd Filetype help , tagbar , qf , vimfiler , diff noremap < buffer > < C - F9 > < Nop >
autocmd Filetype help , tagbar , qf , vimfiler , diff noremap < buffer > < A - F9 > < Nop >
autocmd Filetype help , tagbar , qf , vimfiler , diff noremap < buffer > < Leader > } < Nop >
autocmd Filetype extradite , help , qf , vimfiler noremap < buffer > < F10 > < Nop >
autocmd Filetype extradite , help , qf , vimfiler noremap < buffer > < C - F10 > < Nop >
autocmd Filetype extradite , help , qf , vimfiler noremap < buffer > < A - F10 > < Nop >
autocmd Filetype extradite , help , qf , vimfiler noremap < buffer > < Leader > { < Nop >
2015-03-10 07:27:53 -04:00
autocmd Filetype extradite , help , tagbar , qf , vimfiler noremap < buffer > < F11 > < Nop >
autocmd Filetype extradite , help , tagbar , qf , vimfiler noremap < buffer > < C - F11 > < Nop >
autocmd Filetype extradite , help , tagbar , qf , vimfiler noremap < buffer > < A - F11 > ] < Nop >
autocmd Filetype extradite , help , tagbar , qf , vimfiler noremap < buffer > < Leader > < Nop >
2020-01-30 00:14:57 -05:00
autocmd Filetype extradite , help , tagbar , qf noremap < buffer > < F12 > < Nop >
autocmd Filetype extradite , help , tagbar , qf noremap < buffer > < C - F12 > < Nop >
autocmd Filetype extradite , help , tagbar , qf noremap < buffer > < A - F12 > < Nop >
autocmd Filetype extradite , help , tagbar , qf noremap < buffer > < Leader > [ < Nop >
2014-06-13 00:58:13 -04:00
"disable modifier keys with directions that would interfere with logic
2020-01-30 00:14:57 -05:00
autocmd Filetype qf , vimfiler noremap < buffer > < C - Up > < Nop >
autocmd Filetype qf , vimfiler noremap < buffer > < C - k > < Nop >
autocmd Filetype qf , vimfiler noremap < buffer > < C - Down > < Nop >
autocmd Filetype qf , vimfiler noremap < buffer > < C - j > < Nop >
autocmd Filetype qf , vimfiler , extradite noremap < buffer > < C - Right > < Nop >
autocmd Filetype qf , vimfiler , extradite noremap < buffer > < C - l > < Nop >
autocmd Filetype qf , vimfiler , extradite noremap < buffer > < C - Left > < Nop >
autocmd Filetype qf , vimfiler , extradite noremap < buffer > < C - h > < Nop >
autocmd Filetype qf , vimfiler , extradite noremap < buffer > < A - Up > < Nop >
autocmd Filetype qf , vimfiler , extradite noremap < buffer > < A - k > < Nop >
autocmd Filetype qf , vimfiler , extradite noremap < buffer > < A - Down > < Nop >
autocmd Filetype qf , vimfiler , extradite noremap < buffer > < A - j > < Nop >
autocmd Filetype qf , vimfiler , extradite noremap < buffer > < A - Right > < Nop >
autocmd Filetype qf , vimfiler , extradite noremap < buffer > < A - l > < Nop >
autocmd Filetype qf , vimfiler , extradite noremap < buffer > < A - Left > < Nop >
autocmd Filetype qf , vimfiler , extradite noremap < buffer > < A - h > < Nop >
autocmd Filetype qf , vimfiler noremap < buffer > < S - Up > < Nop >
autocmd Filetype qf , vimfiler noremap < buffer > < S - k > < Nop >
autocmd Filetype qf , vimfiler noremap < buffer > < S - Down > < Nop >
autocmd Filetype qf , vimfiler noremap < buffer > < S - j > < Nop >
autocmd Filetype qf , vimfiler , extradite noremap < buffer > < S - Right > < Nop >
autocmd Filetype qf , vimfiler , extradite noremap < buffer > < S - l > < Nop >
autocmd Filetype qf , vimfiler , extradite noremap < buffer > < S - Left > < Nop >
autocmd Filetype qf , vimfiler , extradite noremap < buffer > < S - h > < Nop >
2014-03-11 03:05:09 -04:00
"}}}