2013-12-08 08:56:16 +00:00
|
|
|
# less
|
|
|
|
|
2016-10-12 16:58:04 +01:00
|
|
|
> Open a file for interactive reading, allowing scrolling and search.
|
2013-12-08 08:56:16 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Open a file:
|
2013-12-08 08:56:16 +00:00
|
|
|
|
2013-12-09 11:12:16 +00:00
|
|
|
`less {{source_file}}`
|
2013-12-08 08:56:16 +00:00
|
|
|
|
2016-10-11 20:34:23 +01:00
|
|
|
- Page down / up:
|
2013-12-08 08:56:16 +00:00
|
|
|
|
2016-10-11 20:34:23 +01:00
|
|
|
`<Space> (down), b (up)`
|
2013-12-08 08:56:16 +00:00
|
|
|
|
2016-10-11 20:34:23 +01:00
|
|
|
- Go to end / start of file:
|
2013-12-08 08:56:16 +00:00
|
|
|
|
2016-10-11 20:34:23 +01:00
|
|
|
`G (end), g (start)`
|
2013-12-08 08:56:16 +00:00
|
|
|
|
2016-10-11 20:34:23 +01:00
|
|
|
- Forward search for a string (press `n`/`N` to go to next/previous match):
|
2013-12-08 08:56:16 +00:00
|
|
|
|
2016-10-11 20:34:23 +01:00
|
|
|
`/{{something}}`
|
2013-12-08 08:56:16 +00:00
|
|
|
|
2016-10-11 20:34:23 +01:00
|
|
|
- Backward search for a string (press `n`/`N` to go to next/previous match):
|
2016-03-04 10:33:57 +00:00
|
|
|
|
2016-10-11 20:34:23 +01:00
|
|
|
`?{{something}}`
|
2016-03-04 10:33:57 +00:00
|
|
|
|
2017-12-06 18:55:50 +00:00
|
|
|
- Follow the output of the currently opened file:
|
2017-12-05 22:41:05 +00:00
|
|
|
|
2017-12-06 18:55:50 +00:00
|
|
|
`F`
|
2017-12-05 22:41:05 +00:00
|
|
|
|
2016-12-21 21:19:14 +00:00
|
|
|
- Open the current file in an editor:
|
2016-12-20 20:47:49 +00:00
|
|
|
|
|
|
|
`v`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Exit:
|
2013-12-08 08:56:16 +00:00
|
|
|
|
|
|
|
`q`
|