Merge remote-tracking branch 'ekie/tiny_tweaks'
This commit is contained in:
commit
2475ffa612
|
@ -5,6 +5,7 @@
|
||||||
:travis-url: https://travis-ci.org/mawww/kakoune
|
:travis-url: https://travis-ci.org/mawww/kakoune
|
||||||
:icons: font
|
:icons: font
|
||||||
:toc: right
|
:toc: right
|
||||||
|
:pp: ++
|
||||||
|
|
||||||
TL;DR
|
TL;DR
|
||||||
-----
|
-----
|
||||||
|
@ -99,8 +100,8 @@ Building
|
||||||
|
|
||||||
Kakoune dependencies are:
|
Kakoune dependencies are:
|
||||||
|
|
||||||
* A C\+\+11 compliant compiler (GCC >= 5 or clang >= 3.4) along with its
|
* A {cpp}11 compliant compiler (GCC >= 5 or clang >= 3.4) along with its
|
||||||
associated C\+\+ standard library (libstdc\+\+ or libc\+\+)
|
associated {cpp} standard library (libstdc{pp} or libc{pp})
|
||||||
* boost (>= 1.50)
|
* boost (>= 1.50)
|
||||||
* ncurses with wide-characters support (>= 5.3, generally referred to as libncursesw)
|
* ncurses with wide-characters support (>= 5.3, generally referred to as libncursesw)
|
||||||
* asciidoc (for the `a2k` tool), to generate man pages
|
* asciidoc (for the `a2k` tool), to generate man pages
|
||||||
|
@ -243,6 +244,7 @@ Just running *kak* launch a new kak session with a client on local terminal.
|
||||||
* `-l`: list existing sessions, and check the dead ones
|
* `-l`: list existing sessions, and check the dead ones
|
||||||
* `-clear`: clear dead sessions socket files
|
* `-clear`: clear dead sessions socket files
|
||||||
* `-ro`: prevent modifications to all buffers from being saved to disk
|
* `-ro`: prevent modifications to all buffers from being saved to disk
|
||||||
|
* `+line[:column]`: specify a target line and column for the first file
|
||||||
|
|
||||||
Configuration
|
Configuration
|
||||||
^^^^^^^^^^^^^
|
^^^^^^^^^^^^^
|
||||||
|
|
|
@ -7,7 +7,7 @@ kak - a vim inspired, selection oriented code editor
|
||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
*kak* [-q] [-n] [-l] [-ro] [-clear] [-ui ui_type] [-e command] [-f keys] [-p session_id] [-c session_id|[[-d] -s session_id] file ...
|
*kak* [-q] [-n] [-l] [-ro] [-clear] [-ui ui_type] [-e command] [-f keys] [-p session_id] [-c session_id|[[-d] -s session_id] [+line[:column]] file ...
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
-----------
|
-----------
|
||||||
|
@ -51,7 +51,7 @@ OPTIONS
|
||||||
connect to the given session
|
connect to the given session
|
||||||
|
|
||||||
-s <session_id>::
|
-s <session_id>::
|
||||||
rename the current session name to *session_id*
|
set the current session name to *session_id*
|
||||||
|
|
||||||
-ui <type>::
|
-ui <type>::
|
||||||
select the user interface, can be one of 'ncurses', 'dummy' or 'json'
|
select the user interface, can be one of 'ncurses', 'dummy' or 'json'
|
||||||
|
@ -62,6 +62,9 @@ OPTIONS
|
||||||
-ro::
|
-ro::
|
||||||
enter in 'readonly mode', all the buffers opened will not be written to disk
|
enter in 'readonly mode', all the buffers opened will not be written to disk
|
||||||
|
|
||||||
|
+line[:column]::
|
||||||
|
specify a target line and column for the first file
|
||||||
|
|
||||||
file::
|
file::
|
||||||
one or more files to edit
|
one or more files to edit
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user