Added a new script that can be used to update the repo if bash is
available. Updated the README. Improved the theme by adding a bunch
of syntax highlighting definitions (mostly rooted in html, though
a bunch of other languages base their colours on it), as well as
tweaking visual selection to longer invert on the block with the cursor,
and parenthesis matching to look the same at both ends. Added a plugin
that improves the theme and adds some keyboard shortcuts to markdown,
which is what the README.md files in Github are written in. I realized
that the h,j,k,l shortcuts equivalent to the ones with arrow keys I'd
added were overwriting other shortcuts with the shift combinations, so
I removed those and the ctrl-ones for consistency. The diff shortcuts
weren't intuitive or easy on the hands, so I tried something else and
I think it works much better now (check vim/keyboard.vim). An update
script has also been added to simplify updating submodules; I'm not
completely clear as to whether following this method will properly
update the submodules in certain conditions like when one is removed,
but this should add new ones and update the existing ones after pulling
from the repo.
2014-04-01 00:03:52 -04:00
|
|
|
"==========================="
|
2014-04-02 19:51:33 -04:00
|
|
|
" "
|
2014-02-20 23:24:20 -05:00
|
|
|
" Keyboard Configuration: "
|
2014-04-02 19:51:33 -04:00
|
|
|
" "
|
|
|
|
" Maintainer: Prurigro "
|
|
|
|
" License: MIT "
|
|
|
|
" "
|
2014-02-20 23:24:20 -05:00
|
|
|
"==========================="
|
|
|
|
"
|
2014-03-28 22:12:13 -04:00
|
|
|
" Note:
|
|
|
|
" *The default <Leader> key is: \
|
|
|
|
"
|
2014-02-20 23:24:20 -05:00
|
|
|
" Reference: (view plugin documentation for the full list of commands each offers)
|
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
|
|
|
" (tcomment _ can also be -)
|
|
|
|
" <Ctrl-_><Ctrl-_> | (A) -> comment selection/create an empty comment
|
|
|
|
" <Ctrl-_>b | (A) -> comment the current block(s)
|
|
|
|
" <Ctrl-_>r | (A) -> comment everything on the line to the right
|
|
|
|
" <Ctrl-_>p | (A) -> comment the current paragraph
|
|
|
|
"
|
|
|
|
" (surround)
|
|
|
|
" S" | (V) -> surround selection with quotes
|
|
|
|
" S<a href=""> | (V) -> surround <a href="">selection</a>
|
2014-04-03 06:17:16 -04:00
|
|
|
" ds" | (N) -> delete surrounding ""
|
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
|
|
|
" dst | (N) -> delete surrounding tag (ie: <strong></strong>)
|
2014-03-28 22:12:13 -04:00
|
|
|
" cs'" | (N) -> change surrounding '' to "" (any delimiters work)
|
|
|
|
" cs"<q> | (N) -> change surrounding "" to the tag: <q></q>
|
|
|
|
" cst" | (N) -> change any surrounding tag to ""
|
2014-02-20 23:24:20 -05: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
|
|
|
" (vim)
|
|
|
|
" D | (N) -> delete/cut to the end of the line
|
|
|
|
" S | (N) -> delete/cut a line up to the whitespace
|
|
|
|
"
|
2014-02-20 23:24:20 -05:00
|
|
|
" Mappings:
|
2014-03-28 22:12:13 -04:00
|
|
|
" (mouse)
|
|
|
|
" <Ctrl-ScrollUp> | (A) -> scroll right
|
|
|
|
" <Ctrl-ScrollDown> | (A) -> scroll left
|
|
|
|
" <Shift-MiddleClick> | (A) -> unbind this from vim so xorg can paste
|
|
|
|
"
|
|
|
|
" (tabs)
|
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
|
|
|
" <Leader>9 | (A) -> go to the next open tab
|
|
|
|
" <Leader>0 | (A) -> go to the previous open tab
|
|
|
|
" <Leader>- | (A) -> open a new tab
|
|
|
|
" <Leader>= | (A) -> create a new tab with vimfiler
|
|
|
|
" <Leader>+ | (A) -> create a new tab with vimfiler
|
2014-03-28 22:12:13 -04:00
|
|
|
"
|
|
|
|
" (toggles)
|
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
|
|
|
" `` | (N) -> toggle the vimfiler sidebar on the right
|
|
|
|
" ~~ | (N) -> toggle the vimfiler sidebar on the left
|
2014-04-02 11:17:12 -04:00
|
|
|
" <Space> | (N) -> toggle folds
|
2014-03-28 22:12:13 -04:00
|
|
|
" <F1> | (A) -> toggle line numbers
|
2014-04-03 06:17:16 -04:00
|
|
|
" <F2> | (A) -> toggle row/column cursor highlighting
|
2014-04-02 11:17:12 -04:00
|
|
|
" <F3> | (A) -> toggle line wrapping
|
2014-04-02 18:12:48 -04:00
|
|
|
" <F4> | (A) -> toggle all folds
|
|
|
|
" <F5> | (A) -> toggle spell check
|
|
|
|
" <F6> | (A) -> toggle syntax checking
|
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
|
|
|
" <F8> | (A) -> toggle the tagbar sidebar
|
|
|
|
" <Ctrl-F8> | (A) -> toggle the location list to check syntax errors
|
2014-04-02 11:17:12 -04:00
|
|
|
" <F9> | (A) -> toggle the gundo undo history sidebar
|
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
|
|
|
" <Ctrl-F9> | (A) -> enable spellcheck & toggle list of spelling errors
|
2014-03-28 22:12:13 -04:00
|
|
|
"
|
|
|
|
" (gvim toggles)
|
|
|
|
" <Ctrl-F1> | (A) -> toggle the menu
|
|
|
|
" <Ctrl-F2> | (A) -> toggle the toolbar
|
|
|
|
" <Ctrl-F3> | (A) -> toggle the scrollbar
|
|
|
|
"
|
2014-04-02 11:17:12 -04:00
|
|
|
" (completion)
|
|
|
|
" <Leader>,, | (A) -> enter after emme 'word' (ie: html:5)
|
2014-03-28 22:12:13 -04:00
|
|
|
" \\ | (N) -> show spelling suggestions popup for word
|
|
|
|
" \| | (N) -> add word to a local list of correct spellings
|
2014-04-02 11:17:12 -04:00
|
|
|
" <Tab> | (I) -> (neocomp) autocomplete using common string
|
|
|
|
" <Leader><Tab> | (I) -> (neocomp) autocomplete the common string
|
|
|
|
" <Enter> | (I) -> (neocomp) close the suggestion popup
|
|
|
|
" <Leader><Backspace> | (I) -> (neocomp) undo the most recent completion
|
2014-03-28 22:12:13 -04:00
|
|
|
"
|
|
|
|
" (formatting)
|
|
|
|
" <Backspace> | (V) -> deletes currently selected text
|
|
|
|
" <Backspace> | (N) -> deletes the character behind the cursor
|
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
|
|
|
" <Leader><C-f> | (V) -> format the selection and return to cursor
|
|
|
|
" <Leader><C-f> | (N) -> format document and return to cursor
|
2014-03-28 22:12:13 -04:00
|
|
|
" <Leader><C-w> | (N) -> remove whitespace
|
|
|
|
" <Leader><C-t> | (N) -> convert tabs into spaces
|
|
|
|
" <Leader>\ | (N) -> remove search highlighting
|
2014-04-03 06:17:16 -04:00
|
|
|
" <Leader><Esc> | (N) -> an alt mapping to remove search highlighting
|
2014-03-28 22:12:13 -04:00
|
|
|
" <Tab> | (V) -> indent all the lines currently selected
|
|
|
|
" <Tab> | (N) -> indent the current line
|
|
|
|
" <Shift-Tab> | (V) -> unindent all the lines currently selected
|
|
|
|
" <Shift-Tab> | (N) -> unindent the current line
|
2014-02-20 23:24:20 -05:00
|
|
|
"
|
2014-03-28 22:12:13 -04:00
|
|
|
" (movement)
|
|
|
|
" = | (N) -> move to the first character on the next line
|
|
|
|
" <Ctrl-Up> | (N) -> move to the beginning of the document
|
|
|
|
" <Ctrl-Down> | (N) -> move to the end of the document
|
|
|
|
" <Ctrl-Right> | (N) -> move to the end of the line
|
|
|
|
" <Ctrl-Left> | (N) -> move to the beginning of the non-whitespace
|
2014-02-20 23:24:20 -05:00
|
|
|
"
|
2014-04-03 06:17:16 -04:00
|
|
|
" <Shift-Up> | (N) -> move a few lines up
|
|
|
|
" <Shift-Down> | (N) -> move a few lines down
|
|
|
|
" <Shift-Right> | (N) -> move a few lines right
|
|
|
|
" <Shift-Left> | (N) -> move a few lines left
|
|
|
|
"
|
2014-03-28 22:12:13 -04:00
|
|
|
" (selection)
|
2014-04-03 06:17:16 -04:00
|
|
|
" <Ctrl-a> | (N) -> select all text
|
|
|
|
" <Leader>a | (N) -> select all text
|
|
|
|
" <Ctrl-a> | (V) -> select all text
|
|
|
|
" <Leader>a | (V) -> select all text
|
|
|
|
"
|
|
|
|
" <Ctrl-Up> | (V) -> select all text above
|
|
|
|
" <Ctrl-Down> | (V) -> select all text below
|
|
|
|
" <Ctrl-Right> | (V) -> select all text to the right
|
|
|
|
" <Ctrl-Left> | (V) -> select all text to the left up to the indent
|
|
|
|
"
|
|
|
|
" <Shift-Up> | (V) -> select a few lines up
|
|
|
|
" <Shift-Down> | (V) -> select a few lines down
|
|
|
|
" <Shift-Right> | (V) -> select a few lines right
|
|
|
|
" <Shift-Left> | (V) -> select a few lines left
|
2014-02-20 23:24:20 -05:00
|
|
|
"
|
2014-03-28 22:12:13 -04:00
|
|
|
" (vimdiff)
|
2014-04-02 11:17:12 -04:00
|
|
|
" <Leader>> | (N) -> update differences
|
2014-04-03 06:17:16 -04:00
|
|
|
" <Leader>< | (N) -> an alt mapping to update differences
|
Added a new script that can be used to update the repo if bash is
available. Updated the README. Improved the theme by adding a bunch
of syntax highlighting definitions (mostly rooted in html, though
a bunch of other languages base their colours on it), as well as
tweaking visual selection to longer invert on the block with the cursor,
and parenthesis matching to look the same at both ends. Added a plugin
that improves the theme and adds some keyboard shortcuts to markdown,
which is what the README.md files in Github are written in. I realized
that the h,j,k,l shortcuts equivalent to the ones with arrow keys I'd
added were overwriting other shortcuts with the shift combinations, so
I removed those and the ctrl-ones for consistency. The diff shortcuts
weren't intuitive or easy on the hands, so I tried something else and
I think it works much better now (check vim/keyboard.vim). An update
script has also been added to simplify updating submodules; I'm not
completely clear as to whether following this method will properly
update the submodules in certain conditions like when one is removed,
but this should add new ones and update the existing ones after pulling
from the repo.
2014-04-01 00:03:52 -04:00
|
|
|
" >> | (N) -> next difference
|
|
|
|
" << | (N) -> previous difference
|
|
|
|
" >< | (N) -> replace diff in current pane with other pane
|
|
|
|
" <> | (N) -> replace diff in other pane with current pane
|
2014-02-20 23:24:20 -05:00
|
|
|
"
|
2014-04-03 06:17:16 -04:00
|
|
|
" (paste functions)
|
Added a new script that can be used to update the repo if bash is
available. Updated the README. Improved the theme by adding a bunch
of syntax highlighting definitions (mostly rooted in html, though
a bunch of other languages base their colours on it), as well as
tweaking visual selection to longer invert on the block with the cursor,
and parenthesis matching to look the same at both ends. Added a plugin
that improves the theme and adds some keyboard shortcuts to markdown,
which is what the README.md files in Github are written in. I realized
that the h,j,k,l shortcuts equivalent to the ones with arrow keys I'd
added were overwriting other shortcuts with the shift combinations, so
I removed those and the ctrl-ones for consistency. The diff shortcuts
weren't intuitive or easy on the hands, so I tried something else and
I think it works much better now (check vim/keyboard.vim). An update
script has also been added to simplify updating submodules; I'm not
completely clear as to whether following this method will properly
update the submodules in certain conditions like when one is removed,
but this should add new ones and update the existing ones after pulling
from the repo.
2014-04-01 00:03:52 -04:00
|
|
|
" <Leader>p | (N) -> view the paste buffers and register contents
|
2014-04-03 06:17:16 -04:00
|
|
|
" <Leader>p<Direction> | (N) -> paste in the direction entered
|
|
|
|
" y | (N) -> copies the character at the cursor
|
|
|
|
" P | (V) -> save selection to the buffer and paste over
|
|
|
|
" p | (V) -> preserve the buffer pasting over selected text
|
|
|
|
"
|
|
|
|
" (delete/cut functions)
|
Added a new script that can be used to update the repo if bash is
available. Updated the README. Improved the theme by adding a bunch
of syntax highlighting definitions (mostly rooted in html, though
a bunch of other languages base their colours on it), as well as
tweaking visual selection to longer invert on the block with the cursor,
and parenthesis matching to look the same at both ends. Added a plugin
that improves the theme and adds some keyboard shortcuts to markdown,
which is what the README.md files in Github are written in. I realized
that the h,j,k,l shortcuts equivalent to the ones with arrow keys I'd
added were overwriting other shortcuts with the shift combinations, so
I removed those and the ctrl-ones for consistency. The diff shortcuts
weren't intuitive or easy on the hands, so I tried something else and
I think it works much better now (check vim/keyboard.vim). An update
script has also been added to simplify updating submodules; I'm not
completely clear as to whether following this method will properly
update the submodules in certain conditions like when one is removed,
but this should add new ones and update the existing ones after pulling
from the repo.
2014-04-01 00:03:52 -04:00
|
|
|
" <Leader>d | (V) -> delete the currently selected text
|
|
|
|
" <Leader>x | (V) -> delete the currently selected text
|
|
|
|
" <Leader>x | (N) -> delete the char(s) under and the cursor
|
|
|
|
" <Leader>X | (V) -> delete the currently selected lines
|
|
|
|
" <Leader>X | (N) -> delete the char(s) before the cursor
|
|
|
|
" <Leader>D | (V) -> delete the currently selected lines
|
|
|
|
" <Leader>D | (N) -> delete chars under and after the cursor on the line
|
|
|
|
" <Leader>dw | (N) -> delete chars under and after the cursor in the word
|
|
|
|
" <Leader>dd | (N) -> delete lines under and after the one below
|
2014-03-28 22:12:13 -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:
|
|
|
|
" (gundo)
|
|
|
|
" <LMouse> | (A) -> same as normal + justify one from the left
|
|
|
|
" <MMouse> | (A) -> same as the left mouse
|
|
|
|
" <RMouse> | (A) -> same as the left mouse
|
|
|
|
" <Right> | (A) -> same as j (down)
|
|
|
|
" l | (A) -> same as j (down)
|
|
|
|
" <Left> | (A) -> same as k (up)
|
|
|
|
" h | (A) -> same as k (up)
|
|
|
|
"
|
|
|
|
" (vimfiler)
|
|
|
|
" <Shift-Return> | (A) -> edit the selected file
|
|
|
|
" <LMouse><LMouse> | (A) -> edit selected file
|
|
|
|
" <Right> | (A) -> map to l, which opens a directory
|
|
|
|
" <Left> | (A) -> map to h, which goes up one directory
|
|
|
|
" <LMouse> | (A) -> same as normal + justify on the left
|
|
|
|
" <MMouse> | (A) -> same as the left mouse
|
|
|
|
" <RMouse> | (A) -> same as the left mouse
|
|
|
|
"
|
|
|
|
" (vimfiler,gundo)
|
|
|
|
"
|
|
|
|
"
|
2014-03-28 22:12:13 -04:00
|
|
|
" Aliases:
|
|
|
|
" :wsudo -and- :sudow | (C) -> :SudoWrite (write the file as root using sudo)
|
|
|
|
" :esudo -and- :sudoe | (C) -> :SudoRead (read a file as root using sudo)
|
2014-02-20 23:24:20 -05:00
|
|
|
"
|
|
|
|
|
2014-03-11 03:05:09 -04:00
|
|
|
"MAPPINGS: GENERAL KEYBINDINGS AND REBINDINGS {{{
|
2014-04-03 23:00:34 -04:00
|
|
|
"MOUSE:{
|
|
|
|
"hold shift to enable middle-click paste
|
|
|
|
noremap <S-Insert> <MiddleMouse>
|
|
|
|
noremap! <S-Insert> <MiddleMouse>
|
|
|
|
|
|
|
|
"hold ctrl to scroll left/right instead of up/down
|
|
|
|
noremap <C-ScrollWheelUp> 3zl
|
|
|
|
noremap <C-ScrollWheelDown> 3zh
|
|
|
|
inoremap <C-ScrollWheelUp> <C-O>3zl
|
|
|
|
inoremap <C-ScrollWheelDown> <C-O>3zh
|
|
|
|
"}
|
|
|
|
|
|
|
|
"TABS:{
|
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
|
|
|
nnoremap <silent><expr> <Leader>0 ':tabnext<CR>'
|
|
|
|
inoremap <silent><expr> <Leader>0 '<C-O>:tabnext<CR>'
|
|
|
|
xnoremap <silent><expr> <Leader>0 '<Esc>:tabnext<CR>'
|
|
|
|
nnoremap <silent><expr> <Leader>9 ':tabprev<CR>'
|
|
|
|
inoremap <silent><expr> <Leader>9 '<Esc>:tabprev<CR>'
|
|
|
|
xnoremap <silent><expr> <Leader>9 '<Esc>:tabprev<CR>'
|
|
|
|
nnoremap <silent><expr> <Leader>- ':tabnew<CR>'
|
|
|
|
inoremap <silent><expr> <Leader>- '<Esc>:tabnew<CR>'
|
|
|
|
xnoremap <silent><expr> <Leader>- '<Esc>:tabnew<CR>'
|
|
|
|
nnoremap <silent><expr> <leader>= ':VimFiler -tab -project<CR>'
|
|
|
|
inoremap <silent><expr> <leader>= '<Esc>:VimFiler -tab -project<CR>'
|
|
|
|
xnoremap <silent><expr> <leader>= '<Esc>:VimFiler -tab -project<CR>'
|
|
|
|
nnoremap <silent><expr> <leader>+ ':VimFiler -tab -project -double<CR>'
|
|
|
|
inoremap <silent><expr> <leader>+ '<Esc>:VimFiler -tab -project -double<CR>'
|
|
|
|
xnoremap <silent><expr> <leader>+ '<Esc>:VimFiler -tab -project -double<CR>'
|
2014-04-03 23:00:34 -04:00
|
|
|
"}
|
|
|
|
|
|
|
|
"TOGGLES:{
|
|
|
|
"bindings to trigger vimfiler
|
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
|
|
|
nnoremap <silent><expr> `` ':VimFilerExplorer -direction=botright -winwidth=45<CR>'
|
|
|
|
nnoremap <silent><expr> ~~ ':VimFilerExplorer -direction=topleft -winwidth=45<CR>'
|
2014-04-03 23:00:34 -04:00
|
|
|
|
|
|
|
"toggle folded code at foldpoints
|
|
|
|
nnoremap <Space> za
|
|
|
|
|
|
|
|
"unmap F1 from help then map it to toggle the display of line numbers
|
|
|
|
nnoremap <silent><expr> <F1> ':set number!<CR>:echo "Line numbers toggled"<CR>'
|
|
|
|
xnoremap <silent><expr> <F1> '<Esc>:set number!<CR>v'
|
|
|
|
inoremap <silent><expr> <F1> '<C-O>:set number!<CR>'
|
|
|
|
|
|
|
|
"toggle the cursor line and column
|
|
|
|
nnoremap <silent><expr> <F2> ':set cursorline! cursorcolumn!<CR>:echo "Cursor crosshair toggled"<CR>'
|
|
|
|
xnoremap <silent><expr> <F2> '<Esc>:set cursorline! cursorcolumn!<CR>v'
|
|
|
|
inoremap <silent><expr> <F2> '<C-O>:set cursorline! cursorcolumn!<CR>'
|
|
|
|
|
|
|
|
"toggle line wrapping (and bottom bar if using the gui)
|
|
|
|
nnoremap <silent><expr> <F3> ':echo "Line wrapping toggled"<CR>:set wrap!<CR>'
|
|
|
|
xnoremap <silent><expr> <F3> '<Esc>:set wrap!<CR>v'
|
|
|
|
inoremap <silent><expr> <F3> '<C-O>:set wrap!<CR>'
|
|
|
|
|
|
|
|
"toggle all folds
|
|
|
|
nnoremap <F4> zi:echo "Code Folding Toggled"<CR>
|
|
|
|
xnoremap <F4> <Esc>ziv
|
|
|
|
inoremap <F4> <C-O>zi
|
|
|
|
|
|
|
|
"toggle spellcheck
|
|
|
|
nnoremap <silent><expr> <F5> ':set spell!<CR>:echo "Spell checking toggled"<CR>'
|
|
|
|
xnoremap <silent><expr> <F5> '<Esc>:set spell!<CR>v'
|
|
|
|
inoremap <silent><expr> <F5> '<C-O>:set spell!<CR>'
|
|
|
|
|
|
|
|
"toggle syntax checking
|
|
|
|
nnoremap <silent><expr> <F6> ':SyntasticToggleMode<CR>'
|
|
|
|
xnoremap <silent><expr> <F6> '<Esc>:SyntasticToggleMode<CR>v'
|
|
|
|
inoremap <silent><expr> <F6> '<C-O>:SyntasticToggleMode<CR>'
|
|
|
|
|
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
|
|
|
"bindings to trigger the tagbar list of tags
|
|
|
|
nnoremap <silent><expr> <F8> ':TagbarToggle<CR>:echo "Code tagbar toggled"<CR>'
|
|
|
|
xnoremap <silent><expr> <F8> '<Esc>:TagbarToggle<CR>v'
|
|
|
|
inoremap <silent><expr> <F8> '<C-O>:TagbarToggle<CR>'
|
|
|
|
|
|
|
|
"bindings to trigger the tagbar list of errors
|
|
|
|
nmap <script> <silent> <C-F8> :call ToggleLocationList()<CR>:echo "Error/Location list toggled"<CR>
|
2014-04-03 23:00:34 -04:00
|
|
|
|
|
|
|
"bindings to trigger the gundo undo history
|
|
|
|
nnoremap <silent><expr> <F9> ':GundoToggle<CR>:echo "Undo history sidebar toggled"<CR>'
|
|
|
|
xnoremap <silent><expr> <F9> '<Esc>:GundoToggle<CR>v'
|
|
|
|
inoremap <silent><expr> <F9> '<C-O>:GundoToggle<CR>'
|
|
|
|
|
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
|
|
|
"bindings to trigger spellcheck
|
|
|
|
nnoremap <silent><expr> <C-F9> ':UpdateAndSpellCheck<CR>:call ToggleQuickfixList()<CR>'
|
|
|
|
xnoremap <silent><expr> <C-F9> '<Esc>:UpdateAndSpellCheck<CR>:call ToggleQuickfixList()<CR>'
|
|
|
|
inoremap <silent><expr> <C-F9> '<Esc>:UpdateAndSpellCheck<CR>:call ToggleQuickfixList()<CR>'
|
2014-04-03 23:00:34 -04:00
|
|
|
"}
|
|
|
|
|
|
|
|
"GVIM TOGGLES:{
|
|
|
|
"map toggles for the menu, toolbar and vertical scrollbar
|
|
|
|
nnoremap <silent><expr> <C-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> <C-F1> "<Esc>:if &go=~#'m'<Bar>set go-=m<Bar>else<Bar>set go+=m<Bar>endif<CR>v"
|
|
|
|
inoremap <silent><expr> <C-F1> "<C-O>:if &go=~#'m'<Bar>set go-=m<Bar>else<Bar>set go+=m<Bar>endif<CR>"
|
|
|
|
|
|
|
|
nnoremap <silent><expr> <C-F2> ":if &go=~#'T'<Bar>set go-=T<Bar>else<Bar>set go+=T<Bar>endif<CR>:echo 'Toolbar toggled'<CR>"
|
|
|
|
vnoremap <silent><expr> <C-F2> "<Esc>:if &go=~#'T'<Bar>set go-=T<Bar>else<Bar>set go+=T<Bar>endif<CR>v"
|
|
|
|
inoremap <silent><expr> <C-F2> "<C-O>:if &go=~#'T'<Bar>set go-=T<Bar>else<Bar>set go+=T<Bar>endif<CR>"
|
|
|
|
|
|
|
|
nnoremap <silent><expr> <C-F3> ":if &go=~#'r'<Bar>set go-=r<Bar>set go-=L<Bar>set go-=b<Bar>else<Bar>set go+=r<Bar>set go+=L<Bar>set go+=b<Bar>endif<CR>:echo 'Scrollbars toggled'<CR>"
|
|
|
|
vnoremap <silent><expr> <C-F3> "<Esc>:if &go=~#'r'<Bar>set go-=r<Bar>set go-=L<Bar>set go-=b<Bar>else<Bar>set go+=r<Bar>set go+=L<Bar>set go+=b<Bar>endif<CR>v"
|
|
|
|
inoremap <silent><expr> <C-F3> "<C-O>:if &go=~#'r'<Bar>set go-=r<Bar>set go-=L<Bar>set go-=b<Bar>else<Bar>set go+=r<Bar>set go+=L<Bar>set go+=b<Bar>endif<CR>"
|
|
|
|
"}
|
|
|
|
|
|
|
|
"COMPLETION:{
|
|
|
|
"emmet switch triggerkey from <Ctrl-Y>
|
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
|
|
|
let g:user_emmet_leader_key='<C-\>'
|
2014-04-03 23:00:34 -04:00
|
|
|
|
|
|
|
"press backslash twice on a mispelled word for suggestions
|
|
|
|
nnoremap \\ hei<C-X><C-S>
|
|
|
|
nnoremap \| zg
|
|
|
|
|
|
|
|
"neocomplcache: scroll through completion list
|
|
|
|
inoremap <expr><Tab> pumvisible() ? "\<C-n>" : "\<Tab>"
|
|
|
|
"neocomplcache: complete the common part of the string
|
|
|
|
inoremap <expr><Leader><Tab> neocomplcache#complete_common_string()
|
|
|
|
"neocomplcache: close popup and delete backward char
|
|
|
|
inoremap <expr><CR> pumvisible() ? neocomplcache#smart_close_popup() : "\<CR>"
|
|
|
|
"neocomplcache : undo completion
|
|
|
|
inoremap <expr><Leader><Backspace> "<Backspace>" . neocomplcache#undo_completion()
|
|
|
|
"}
|
|
|
|
|
|
|
|
"FORMATTING:{
|
|
|
|
"have backspace delete the selected text
|
|
|
|
vnoremap <Backspace> "_x
|
|
|
|
nnoremap <Backspace> i<Backspace><Esc>l
|
|
|
|
|
|
|
|
"formatting options to apply to the whole document
|
|
|
|
nnoremap <Leader><C-f> mzgg=G`z<CR>:echo "The document has been formatted"<CR>
|
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
|
|
|
vnoremap <Leader><C-f> mz=`z<CR>:echo "The selection has been formatted"<CR>
|
2014-04-03 23:00:34 -04:00
|
|
|
nnoremap <silent><expr> <Leader><C-w> ':FixWhitespace<CR>:echo "Trailing whitespace has been removed"<CR>'
|
|
|
|
nnoremap <silent><expr> <Leader><C-t> ':retab<CR>:noh<CR>:echo "Tabs have been converted to spaces"<CR>'
|
|
|
|
nnoremap <silent><expr> <Leader>/ ':noh<CR>:echo "Search results have been cleared"<CR>'
|
|
|
|
nnoremap <silent><expr> <Leader><Esc> ':noh<CR>:echo "Search results have been cleared"<CR>'
|
|
|
|
|
|
|
|
"tab and untab the currently selected lines
|
|
|
|
vnoremap <Tab> >gv
|
|
|
|
nnoremap <Tab> v>gv<Esc>
|
|
|
|
vnoremap <S-Tab> <gv
|
|
|
|
nnoremap <S-Tab> v<gv<Esc>
|
|
|
|
"}
|
|
|
|
|
|
|
|
"MOVEMENT:{
|
|
|
|
"additional mappings for easier access
|
|
|
|
nnoremap = +
|
|
|
|
|
|
|
|
"remap keys for speedier movement
|
|
|
|
nnoremap <S-Up> 4k
|
|
|
|
nnoremap <S-Down> 4j
|
|
|
|
nnoremap <S-Right> 6l
|
|
|
|
nnoremap <S-Left> 6h
|
|
|
|
|
|
|
|
"remap keys to scroll to the end in a direction
|
|
|
|
nnoremap <C-Up> gg0
|
|
|
|
nnoremap <C-Down> G$
|
|
|
|
nnoremap <C-Right> $
|
|
|
|
nnoremap <C-Left> ^
|
|
|
|
"}
|
|
|
|
|
|
|
|
"SELECTION:{
|
|
|
|
"ctrl-a to select all (and an alt for screen users)
|
|
|
|
nnoremap <C-a> gg0vG$
|
|
|
|
xnoremap <C-a> <Esc>gg0vG$
|
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
|
|
|
nnoremap <Leader>a <Esc>gg0vG$
|
2014-04-03 23:00:34 -04:00
|
|
|
xnoremap <Leader>a gg0vG$
|
|
|
|
|
|
|
|
"map remap keys for speedier text selection
|
|
|
|
xnoremap <S-Up> 4k
|
|
|
|
xnoremap <S-Down> 4j
|
|
|
|
xnoremap <S-Right> 6l
|
|
|
|
xnoremap <S-Left> 6h
|
|
|
|
|
|
|
|
"remap keys to select all text in one direction
|
|
|
|
xnoremap <C-Up> gg0
|
|
|
|
xnoremap <C-Down> G$
|
|
|
|
xnoremap <C-Right> $
|
|
|
|
xnoremap <C-Left> ^
|
|
|
|
"}
|
|
|
|
|
|
|
|
"VIMDIFF:{
|
|
|
|
"map shortcuts for vimdiff
|
|
|
|
nnoremap <silent><expr> <Leader>> ':diffu<CR>'
|
|
|
|
nnoremap <silent><expr> <Leader>< ':diffu<CR>'
|
|
|
|
nnoremap >> ]c
|
|
|
|
nnoremap << [c
|
|
|
|
nnoremap <> dp
|
|
|
|
nnoremap >< do
|
|
|
|
"}
|
|
|
|
|
|
|
|
"PASTE:{
|
|
|
|
"display contents of paste buffers
|
|
|
|
nnoremap <silent><expr> <Leader>p ':reg<CR>'
|
|
|
|
|
|
|
|
"allow y to copy a single character in normal mode
|
|
|
|
nnoremap y vy<Esc>
|
|
|
|
|
|
|
|
"P puts text it replaces in the buffer and p does not
|
|
|
|
vnoremap P p
|
|
|
|
xmap p <Plug>ReplaceWithRegisterVisual
|
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
|
|
|
nmap <C-p> <Plug>ReplaceWithRegisterOperator
|
2014-04-03 23:00:34 -04:00
|
|
|
|
|
|
|
"Alternatives to deletion commands that don't replace the buffer
|
|
|
|
vnoremap <Leader>x "_x
|
|
|
|
nnoremap <Leader>x "_x
|
|
|
|
vnoremap <Leader>X "_X
|
|
|
|
nnoremap <Leader>X "_X
|
|
|
|
vnoremap <Leader>D "_D
|
|
|
|
nnoremap <Leader>D "_D
|
|
|
|
vnoremap <Leader>d "_d
|
|
|
|
nnoremap <Leader>dd "_dd
|
|
|
|
nnoremap <Leader>dw "_dw
|
|
|
|
"}
|
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: {{{
|
|
|
|
"gundo
|
|
|
|
autocmd FileType gundo noremap <buffer> <LeftMouse> <LeftMouse>0l
|
|
|
|
autocmd FileType gundo noremap <buffer> <MiddleMouse> <LeftMouse>
|
|
|
|
autocmd FileType gundo noremap <buffer> <RightMouse> <LeftMouse>
|
|
|
|
autocmd FileType gundo noremap <buffer> <Right> j
|
|
|
|
autocmd FileType gundo noremap <buffer> l j
|
|
|
|
autocmd FileType gundo noremap <buffer> <Left> k
|
|
|
|
autocmd FileType gundo noremap <buffer> h k
|
|
|
|
|
|
|
|
"vimfiler
|
|
|
|
autocmd FileType vimfiler noremap <buffer> <Right> l
|
|
|
|
autocmd FileType vimfiler noremap <buffer> <Left> h
|
|
|
|
autocmd FileType vimfiler noremap <buffer> <2-LeftMouse> <Plug>(vimfiler_edit_file)
|
|
|
|
autocmd FileType vimfiler noremap <buffer> <LeftMouse> <LeftMouse>0
|
|
|
|
autocmd FileType vimfiler noremap <buffer> <MiddleMouse> <LeftMouse>
|
|
|
|
autocmd FileType vimfiler noremap <buffer> <RightMouse> <LeftMouse>
|
|
|
|
autocmd FileType vimfiler noremap <S-CR> e
|
|
|
|
"}}}
|
|
|
|
|
|
|
|
"DISABLED MAPPINGS: {{{
|
|
|
|
"remove incompatible toggles from gundo and filer
|
|
|
|
autocmd Filetype gundo,vimfiler noremap <F1> <Nop>
|
|
|
|
autocmd Filetype gundo,vimfiler noremap <F2> <Nop>
|
|
|
|
autocmd Filetype gundo,vimfiler noremap <F3> <Nop>
|
|
|
|
autocmd Filetype gundo,vimfiler noremap <C-Up> <Nop>
|
|
|
|
autocmd Filetype gundo,vimfiler noremap <C-k> <Nop>
|
|
|
|
autocmd Filetype gundo,vimfiler noremap <C-Down> <Nop>
|
|
|
|
autocmd Filetype gundo,vimfiler noremap <C-j> <Nop>
|
|
|
|
autocmd Filetype gundo,vimfiler noremap <C-Right> <Nop>
|
|
|
|
autocmd Filetype gundo,vimfiler noremap <C-l> <Nop>
|
|
|
|
autocmd Filetype gundo,vimfiler noremap <C-Left> <Nop>
|
|
|
|
autocmd Filetype gundo,vimfiler noremap <C-h> <Nop>
|
|
|
|
autocmd Filetype gundo,vimfiler noremap <S-Up> <Nop>
|
|
|
|
autocmd Filetype gundo,vimfiler noremap <S-k> <Nop>
|
|
|
|
autocmd Filetype gundo,vimfiler noremap <S-Down> <Nop>
|
|
|
|
autocmd Filetype gundo,vimfiler noremap <S-j> <Nop>
|
|
|
|
autocmd Filetype gundo,vimfiler noremap <S-Right> <Nop>
|
|
|
|
autocmd Filetype gundo,vimfiler noremap <S-l> <Nop>
|
|
|
|
autocmd Filetype gundo,vimfiler noremap <S-Left> <Nop>
|
|
|
|
autocmd Filetype gundo,vimfiler noremap <S-h> <Nop>
|
|
|
|
|
|
|
|
"}}}
|
|
|
|
|
2014-03-28 22:12:13 -04:00
|
|
|
"ALIASES: COMMAND SHORTCUTS {{{
|
|
|
|
cabbrev sudow SudoWrite
|
|
|
|
cabbrev wsudo SudoWrite
|
|
|
|
cabbrev sudoe SudoRead
|
|
|
|
cabbrev esudo SudoRead
|
2014-03-11 03:05:09 -04:00
|
|
|
"}}}
|
|
|
|
|
|
|
|
"TMUX AND SCREEN COMPATIBILITY: SOME HACKS TO MAKE THINGS WORK RIGHT {{{
|
2014-03-28 22:12:13 -04:00
|
|
|
"general compatibility settings for both screen and tmux
|
2014-03-11 03:05:09 -04:00
|
|
|
if $TERM =~ '^screen-256color'
|
|
|
|
nmap <Esc>OH <Home>
|
|
|
|
imap <Esc>OH <Home>
|
|
|
|
nmap <Esc>OF <End>
|
|
|
|
imap <Esc>OF <End>
|
|
|
|
endif
|
2014-03-28 07:36:19 -04:00
|
|
|
|
2014-03-28 22:12:13 -04:00
|
|
|
"full keyboard compatibility for tmux with xterm-keys enabled
|
2014-03-28 07:36:19 -04:00
|
|
|
if &term =~ '^screen' && exists('$TMUX')
|
|
|
|
execute "set <xUp>=\e[1;*A"
|
|
|
|
execute "set <xDown>=\e[1;*B"
|
|
|
|
execute "set <xRight>=\e[1;*C"
|
|
|
|
execute "set <xLeft>=\e[1;*D"
|
|
|
|
execute "set <xHome>=\e[1;*H"
|
|
|
|
execute "set <xEnd>=\e[1;*F"
|
|
|
|
execute "set <Insert>=\e[2;*~"
|
|
|
|
execute "set <Delete>=\e[3;*~"
|
|
|
|
execute "set <PageUp>=\e[5;*~"
|
|
|
|
execute "set <PageDown>=\e[6;*~"
|
|
|
|
execute "set <xF1>=\e[1;*P"
|
|
|
|
execute "set <xF2>=\e[1;*Q"
|
|
|
|
execute "set <xF3>=\e[1;*R"
|
|
|
|
execute "set <xF4>=\e[1;*S"
|
|
|
|
execute "set <F5>=\e[15;*~"
|
|
|
|
execute "set <F6>=\e[17;*~"
|
|
|
|
execute "set <F7>=\e[18;*~"
|
|
|
|
execute "set <F8>=\e[19;*~"
|
|
|
|
execute "set <F9>=\e[20;*~"
|
|
|
|
execute "set <F10>=\e[21;*~"
|
|
|
|
execute "set <F11>=\e[23;*~"
|
|
|
|
execute "set <F12>=\e[24;*~"
|
|
|
|
endif
|
2014-03-11 03:05:09 -04:00
|
|
|
"}}}
|