From d19e6a42f6aa5c1c8bee8303011f65c7b46b1f00 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 16 Jun 2019 18:06:11 +1200 Subject: Add 'foldlevel' setting maps Not sure I'll keep these; nine keys for what's really one function seems a bit wasteful, but I'm not using any of them yet. --- vim/vimrc | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/vim/vimrc b/vim/vimrc index 1273840f..5d12b321 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -1564,6 +1564,15 @@ xmap r (ReplaceOperator) nmap * (RegexEscape) xmap * (RegexEscape) +" I don't have anything for which I'm using the numbers just yet, so let's set +" them to apply an explicit 'foldlevel' for now, which is occasionally useful, +" though I suspect I'm more likely to keep using zM, zm, and zr. +" +for s:key in range(0,9) + execute 'nnoremap '.s:key.' :set foldlevel='.s:key.'' + execute 'xmap '.s:key.' '.s:key.'gv' +endfor + " And last, but definitely not least, I'm required by Vim fanatic law to " include a mapping that reloads my whole configuration. This uses the " command wrapper defined much earlier in the file, so that filetypes also get -- cgit v1.2.3