mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 15:06:38 -05:00
Remove SudoEdit.vim as it isn't compatible with all configurations
This commit is contained in:
parent
6deeb8686c
commit
5f6373aa95
4 changed files with 0 additions and 16 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -1,6 +1,3 @@
|
|||
[submodule "vim/bundle/SudoEdit.vim"]
|
||||
path = vim/bundle/SudoEdit.vim
|
||||
url = https://github.com/vim-scripts/SudoEdit.vim.git
|
||||
[submodule "vim/bundle/vim-trailing-whitespace"]
|
||||
path = vim/bundle/vim-trailing-whitespace
|
||||
url = https://github.com/bronson/vim-trailing-whitespace.git
|
||||
|
|
|
@ -164,7 +164,6 @@ For a complete list of mappings specific to **darkcloud-vimconfig**, check the l
|
|||
* [MatchTagAlways](https://github.com/Valloric/MatchTagAlways): A Vim plugin that always highlights the enclosing html/xml tags.
|
||||
* [ReplaceWithRegister](https://github.com/vim-scripts/ReplaceWithRegister): Replace text with the contents of a register (for paste+replace without writing over the buffer).
|
||||
* [splitjoin.vim](https://github.com/AndrewRadev/splitjoin.vim): Simplifies the transition between multiline and single-line code
|
||||
* [SudoEdit.vim](https://github.com/vim-scripts/SudoEdit.vim): Read and write files without the necessary permissions through the use of sudo.
|
||||
* [tabular](https://github.com/godlygeek/tabular): Vim script for text filtering and alignment.
|
||||
* [tagbar](https://github.com/majutsushi/tagbar): Uses ctags to generate a sidebar of the tags for the current file.
|
||||
* [tcommand_vim](https://github.com/tomtom/tcommand_vim): Select commands, menu items etc. from a list.
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
Subproject commit 145ddffb8cd33211df22b1c7c5399cb8ecdafd6b
|
|
@ -22,9 +22,6 @@
|
|||
" :sp66 | (C) -> create a split using 66% of the height
|
||||
" :diff | (C) -> open a new file in diff mode
|
||||
"
|
||||
" :wsudo & :sudow | (C) -> write the file as root using sudo
|
||||
" :esudo & :sudoe | (C) -> read a file as root using sudo
|
||||
"
|
||||
" :ik | (C) -> add following character to keywords
|
||||
" :iK | (C) -> remove following character from keywords
|
||||
"
|
||||
|
@ -275,14 +272,6 @@
|
|||
cabbrev <expr><silent> sp66 ':SP66<CR>'
|
||||
cabbrev diff vertical diffsplit
|
||||
|
||||
"read/write file with sudo
|
||||
cabbrev sudow SudoWrite
|
||||
cabbrev wsudo SudoWrite
|
||||
cabbrev ws SudoWrite
|
||||
cabbrev sudoe SudoRead
|
||||
cabbrev esudo SudoRead
|
||||
cabbrev es SudoRead
|
||||
|
||||
"add/remove character as keyword
|
||||
cabbrev ik setlocal iskeyword+=
|
||||
cabbrev iK setlocal iskeyword-=
|
||||
|
|
Loading…
Reference in a new issue