From f7d07f23dad9b9b81536bcfeb406547dac1531d7 Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Thu, 9 Aug 2018 16:28:28 +0100 Subject: [PATCH] Add TODO's for :LStripLines --- autoload/do.vim | 2 ++ plugin/commands.vim | 2 ++ 2 files changed, 4 insertions(+) diff --git a/autoload/do.vim b/autoload/do.vim index ce55419..25900e2 100644 --- a/autoload/do.vim +++ b/autoload/do.vim @@ -20,6 +20,8 @@ function! do#rstrip_lines() call cursor(l:line, l:column) endfunction +" TODO: Strip white space from left of all lines, retains relative indentation. + " Set the tab width for the current filetype function! do#set_tab_width(width) execute 'setlocal tabstop='.a:width diff --git a/plugin/commands.vim b/plugin/commands.vim index 2a3c980..ff0fb28 100644 --- a/plugin/commands.vim +++ b/plugin/commands.vim @@ -5,6 +5,8 @@ command! ISort call do#isort() " TODO: Make RStripLines work on a range command! RStripLines call do#rstrip_lines() +" TODO: Strip white space from left of all lines, retains relative indentation. + " Set tab width command! -nargs=1 TabWidth call do#set_tab_width()