aboutsummaryrefslogtreecommitdiff
path: root/runtime/tutor
Commit message (Collapse)AuthorAge
* Add tutor for match mode (#8751)JR2023-12-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | * Add tutor for match mode * Improve the surround tutor * Add missing == in header * Reflow * Update runtime/tutor Co-authored-by: David Else <12832280+David-Else@users.noreply.github.com> * Update runtime/tutor Co-authored-by: David Else <12832280+David-Else@users.noreply.github.com> * Update runtime/tutor Co-authored-by: David Else <12832280+David-Else@users.noreply.github.com> * Apply feedback --------- Co-authored-by: David Else <12832280+David-Else@users.noreply.github.com>
* Say "unindent" instead of "outdent" in tutor (#8623)blt__2023-10-26
|
* tutor: Delete space between shorthand (#6920)Rafael Madriz2023-04-30
|
* tutor: Trim trailing white space (#6919)Rafael Madriz2023-04-30
|
* Replace 'Visual' (mode) with 'Select' in tutorJohn Careaga2023-04-14
|
* Remove outdated tutor note about increment and decrement behaviorJohn DeSilva2023-02-11
|
* Update tutor logo (#5681)g-re-g2023-01-27
|
* tutor: Change "Type" to "Press" for specials keys and modifiers (#5609)Vítor Galvão2023-01-21
|
* Fix a small typo in tutor document (#5449)liuxueyang2023-01-08
|
* Add tutor example for WORDS (#5304)mrjerzy2022-12-30
|
* tutor: add chapter for commenting lines (#5211)Soc Virnyl S. Estela2022-12-26
|
* Add eb word selection trick to the tutor (#5247)Alex Kladov2022-12-24
|
* tutor: Add a content cycling section (#5161)Gioele De Vitti2022-12-23
|
* tutor: Fix typos in 8.2 (#5213)Lukas Werling2022-12-19
|
* fix(tutor): Capitalize first letter of a sentence (#5075)LeoniePhiline2022-12-09
|
* tutor: Clarify space searching instructions (#4953)Tshepang Mbambo2022-12-01
|
* tutor: Add missing quotes (#4832)Tshepang Mbambo2022-11-23
|
* tutor: fix wording in recap for chapter 5 (#4629)Tobias Kohlbau2022-11-07
| | | | | | In recap for chapter 5.1 specify that the cursor is duplicted to the next suitable line instead of the next line. Signed-off-by: Tobias Kohlbau <tobias@kohlbau.de>
* tutor: Normalize key names, capitalization, etc.Tim Siegel2022-10-12
|
* tutor: Minor grammar fixTim Siegel2022-10-12
| | | | No need to say additionally, as well, also, etc. One is enough.
* tutor: Clarify forward reference to "primary selection"Tim Siegel2022-10-12
|
* tutor: Clarify first multi-cursor exampleTim Siegel2022-10-12
| | | | | If the reader is unfortunate enough to place the cursor at the beginning of the line on step #1, subsequent steps will fail.
* tutor: Clarify forward reference to "select command"Tim Siegel2022-10-12
| | | | | | The phrase "Like the select command" suggests that the reader has been introduced to select already. That doesn't happen until the next chapter.
* tutor: 5.5 add missing words (#4160)Mike Sampson2022-10-09
|
* Fix tutor typo (#4116)Jonathan2022-10-05
|
* Keep arrow and special keys in insert (#3915)Ivan Tham2022-10-03
| | | | | | | | | | | | | | | | | | | | | | * Keep arrow and special keys in insert Advanced users won't need it and is useful for beginners. Revert part of #3671. * Change text for insert mode section Co-authored-by: Blaž Hrastnik <blaz@mxxn.io> * Remove ctrl-up/down in insert * Reorganize insert keys and docs * Improve page up experience on last tutor The last tutor page can page down multiple times and it will break the heading on the 80x24 screen paging when reaching the last page, this keeps the style the same and make sure page up and down won't break it. Co-authored-by: Blaž Hrastnik <blaz@mxxn.io>
* tutor: missing <ESC> before removing the second cursor (#4027)joleaf2022-09-29
| | | This step was missing in section 5.2 of tutor.
* Fix tutor typo `favourite` to `favorite` (#4007)Sora2022-09-28
|
* docs: Punctuation on tutor (#3888)adrian52022-09-23
|
* Remove arrow key recommendation from tutor (#3811)Michael Davis2022-09-12
|
* Remove the .txt suffix from tutorBlaž Hrastnik2022-09-11
The tutor file is loaded as .txt which can potentially spawn a language server. Then the path is unset, but the LS remains active. This can cause panics since updates are now submitted for a doc with no path. As a quick workaround we remove the extension which should avoid detection. Fixes #3730