mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 23:06:38 -05:00
Added function check to MakeNewDir to avoid complaints when reloading
settings.vim, and played with key timeout settings to see if I can fix a strange error where the arrow keys suddenly stop working.
This commit is contained in:
parent
855bede1d7
commit
5f64be2ad0
1 changed files with 14 additions and 11 deletions
|
@ -82,9 +82,11 @@
|
|||
set whichwrap=b,s,<,>,[,] "scrolling left/right off current line wraps to the next/previous
|
||||
set smarttab expandtab autoindent tabstop=4 shiftwidth=4 "configure tabs
|
||||
set hlsearch incsearch ignorecase smartcase "configure how search behaves
|
||||
set timeoutlen=500 ttimeoutlen=0 "shorten the timeout length of escapes
|
||||
set timeout timeoutlen=1000 "how long before timing out for mappings
|
||||
set ttimeout ttimeoutlen=100 "how long before timing out for terminal key codes
|
||||
|
||||
"enable the auto-creation of missing folders in a save path
|
||||
if !exists('*s:MakeNewDir')
|
||||
function s:MakeNewDir(fullpath, buf)
|
||||
if empty(getbufvar(a:buf,'&buftype')) && a:fullpath!~#'\v^\w+\:\/'
|
||||
let dirpath=fnamemodify(a:fullpath,':h')
|
||||
|
@ -95,5 +97,6 @@
|
|||
autocmd!
|
||||
autocmd BufWritePre * :call s:MakeNewDir(expand('<afile>'),+expand('<abuf>'))
|
||||
augroup END
|
||||
endif
|
||||
"}}}
|
||||
"}}}
|
||||
|
|
Loading…
Reference in a new issue