From 18dacd037f756066a92972687b53d5ce94d2c96b Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Fri, 18 Sep 2020 19:34:02 +0200 Subject: plugin/abbreviations.vim: Add cabbrevs for T-prefixed commands I used to be able to type: :59-63T to comment out a block. Now, since `TBuffer` is earlier alphabetically than `TComment`, the above no longer works. Add two command line abbreviations to make it easier to use these two commands. --- plugin/abbreviations.vim | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 plugin/abbreviations.vim (limited to 'plugin') diff --git a/plugin/abbreviations.vim b/plugin/abbreviations.vim new file mode 100644 index 0000000..58966be --- /dev/null +++ b/plugin/abbreviations.vim @@ -0,0 +1,2 @@ +cabbrev t TComment +cabbrev tb TBuffer -- cgit v1.2.3