Skip to content

Commit 5d2e75f

Browse files
committed
Adds documentation related to indentation increasing/decreasing (#19)
1 parent e4b9d34 commit 5d2e75f

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,8 @@ let g:VimTodoListsMoveItems = 0
138138
* `:VimTodoListsGoToNextItem` - go to the next item
139139
* `:VimTodoListsGoToPreviousItem` - go to the previous item
140140
* `:VimTodoListsToggleItem` - toggles the current item (or selected items in visual mode)
141+
* `:VimTodoListsIncreaseIndent` - increases the indent of current line
142+
* `:VimTodoListsDecreaseIndent` - decreases the indent of current line
141143

142144
##### Default key mappings
143145

@@ -149,6 +151,8 @@ let g:VimTodoListsMoveItems = 0
149151
* `O` - create new item below the cursor
150152
* `<Space>` - toggle current item
151153
* `<CR>` - create new item in `insert mode`
154+
* `<Tab>` - increases the indent of current (or selected) line(s)
155+
* `<Shift-Tab>` - decreases the indent of current (or selected) line(s)
152156
* `<leader>e` - switch to normal editing mode
153157

154158
###### Normal editing mode
@@ -238,6 +242,7 @@ Changelog
238242
#### 0.7.0
239243

240244
* Makes items list markdown compatible
245+
* Adds mappings for fast increasing/decreasing indent
241246

242247
Credits
243248
-------

doc/vim-todo-lists.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,7 @@ Commands
158158
*:VimTodoListsCreateNewItemAbove* *:VimTodoListsCreateNewItemBelow*
159159
*:VimTodoListsCreateNewItem* *:VimTodoListsGoToNextItem*
160160
*:VimTodoListsGoToPreviousItem* *:VimTodoListsToggleItem*
161+
*:VimTodoListsIncreaseIndent* *:VimTodoListsDecreaseIndent*
161162

162163
* :VimTodoListsCreateNewItemAbove - creates a new item in a line above cursor
163164
* :VimTodoListsCreateNewItemBelow - creates a new item in a line below cursor
@@ -166,6 +167,8 @@ Commands
166167
* :VimTodoListsGoToPreviousItem - go to the previous item
167168
* :VimTodoListsToggleItem - toggles the current item (or selected items
168169
in visual mode)
170+
* :VimTodoListsIncreaseIndent - increases the indent of current line
171+
* :VimTodoListsDecreaseIndent - decreases the indent of current line
169172

170173

171174
Default key bindings
@@ -179,6 +182,8 @@ Item editing mode
179182
* o - create new item above the cursor
180183
* O - create new item below the cursor
181184
* <Space> - toggle current item
185+
* <Tab> - increases the indent of current (or selected) line(s)
186+
* <Shift-Tab> - decreases the indent of current (or selected) line(s)
182187
* <CR> - create new item in insert mode
183188
* <leader>e - switch to normal editing mode
184189

@@ -273,6 +278,7 @@ SOFTWARE.
273278
0.7.0
274279

275280
* Makes items list markdown compatible
281+
* Adds mappings for fast increasing/decreasing indent
276282

277283
==============================================================================
278284
8. Credits *VimTodoListsCredits*

0 commit comments

Comments
 (0)