2017-10-16 17:07:52 +03:00
|
|
|
# Line comments
|
2021-10-04 20:11:55 +03:00
|
|
|
# If the language has no line comments, set to ''
|
2017-11-03 10:34:41 +03:00
|
|
|
declare-option -docstring "characters inserted at the beginning of a commented line" \
|
2017-05-16 14:35:43 +03:00
|
|
|
str comment_line '#'
|
2016-10-15 11:04:43 +03:00
|
|
|
|
2017-10-16 17:07:52 +03:00
|
|
|
# Block comments
|
|
|
|
declare-option -docstring "characters inserted before a commented block" \
|
|
|
|
str comment_block_begin
|
|
|
|
declare-option -docstring "characters inserted after a commented block" \
|
|
|
|
str comment_block_end
|
2015-10-25 15:17:36 +03:00
|
|
|
|
2017-10-16 17:07:52 +03:00
|
|
|
# Default comments for all languages
|
2016-10-15 11:04:43 +03:00
|
|
|
hook global BufSetOption filetype=asciidoc %{
|
2020-06-02 11:50:13 +03:00
|
|
|
set-option buffer comment_line '//'
|
|
|
|
set-option buffer comment_block_begin '////'
|
|
|
|
set-option buffer comment_block_end '////'
|
2016-10-15 11:04:43 +03:00
|
|
|
}
|
|
|
|
|
2019-11-09 17:22:19 +03:00
|
|
|
hook global BufSetOption filetype=(c|cpp|dart|gluon|go|java|javascript|objc|php|rust|sass|scala|scss|swift|typescript) %{
|
2017-11-03 10:34:41 +03:00
|
|
|
set-option buffer comment_line '//'
|
2017-10-16 17:07:52 +03:00
|
|
|
set-option buffer comment_block_begin '/*'
|
|
|
|
set-option buffer comment_block_end '*/'
|
2016-10-15 11:04:43 +03:00
|
|
|
}
|
|
|
|
|
2021-05-30 15:39:58 +03:00
|
|
|
hook global BufSetOption filetype=(cabal|haskell|moon|idris|elm|dhall|purescript) %{
|
2018-05-22 14:24:54 +03:00
|
|
|
set-option buffer comment_line '--'
|
2017-10-16 17:07:52 +03:00
|
|
|
set-option buffer comment_block_begin '{-'
|
|
|
|
set-option buffer comment_block_end '-}'
|
2016-10-15 11:04:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
hook global BufSetOption filetype=clojure %{
|
2018-05-22 14:24:54 +03:00
|
|
|
set-option buffer comment_line '#_'
|
2017-10-16 17:07:52 +03:00
|
|
|
set-option buffer comment_block_begin '(comment '
|
|
|
|
set-option buffer comment_block_end ')'
|
2016-10-15 11:04:43 +03:00
|
|
|
}
|
|
|
|
|
2021-04-23 20:49:24 +03:00
|
|
|
hook global BufSetOption filetype=janet %{
|
|
|
|
set-option buffer comment_line '#'
|
|
|
|
set-option buffer comment_block_begin '(comment '
|
|
|
|
set-option buffer comment_block_end ')'
|
|
|
|
}
|
|
|
|
|
2016-10-14 22:12:01 +03:00
|
|
|
hook global BufSetOption filetype=coffee %{
|
2017-10-16 17:07:52 +03:00
|
|
|
set-option buffer comment_block_begin '###'
|
|
|
|
set-option buffer comment_block_end '###'
|
2016-10-14 22:12:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
hook global BufSetOption filetype=css %{
|
2017-11-03 10:34:41 +03:00
|
|
|
set-option buffer comment_line ''
|
2017-10-16 17:07:52 +03:00
|
|
|
set-option buffer comment_block_begin '/*'
|
|
|
|
set-option buffer comment_block_end '*/'
|
2016-10-14 22:12:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
hook global BufSetOption filetype=d %{
|
2017-11-03 10:34:41 +03:00
|
|
|
set-option buffer comment_line '//'
|
2017-10-16 17:07:52 +03:00
|
|
|
set-option buffer comment_block_begin '/+'
|
|
|
|
set-option buffer comment_block_end '+/'
|
2016-10-14 22:12:01 +03:00
|
|
|
}
|
|
|
|
|
2021-08-07 21:30:29 +03:00
|
|
|
hook global BufSetOption filetype=(fennel|gas|ini) %{
|
2017-11-03 10:34:41 +03:00
|
|
|
set-option buffer comment_line ';'
|
2016-10-15 11:04:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
hook global BufSetOption filetype=haml %{
|
2017-11-03 10:34:41 +03:00
|
|
|
set-option buffer comment_line '-#'
|
2016-10-15 11:04:43 +03:00
|
|
|
}
|
|
|
|
|
2018-02-28 07:07:25 +03:00
|
|
|
hook global BufSetOption filetype=(html|xml) %{
|
2017-11-03 10:34:41 +03:00
|
|
|
set-option buffer comment_line ''
|
2017-11-23 12:30:10 +03:00
|
|
|
set-option buffer comment_block_begin '<!--'
|
2017-10-16 17:07:52 +03:00
|
|
|
set-option buffer comment_block_end '-->'
|
2016-10-14 22:12:01 +03:00
|
|
|
}
|
|
|
|
|
2020-08-31 09:13:18 +03:00
|
|
|
hook global BufSetOption filetype=(latex|mercury) %{
|
2017-11-03 10:34:41 +03:00
|
|
|
set-option buffer comment_line '%'
|
2016-10-15 11:04:43 +03:00
|
|
|
}
|
|
|
|
|
2019-07-12 14:57:48 +03:00
|
|
|
hook global BufSetOption filetype=ledger %{
|
|
|
|
set-option buffer comment_line ';'
|
|
|
|
}
|
|
|
|
|
2021-02-21 15:21:04 +03:00
|
|
|
hook global BufSetOption filetype=(lisp|scheme) %{
|
2017-11-03 10:34:41 +03:00
|
|
|
set-option buffer comment_line ';'
|
2017-10-16 17:07:52 +03:00
|
|
|
set-option buffer comment_block_begin '#|'
|
|
|
|
set-option buffer comment_block_end '|#'
|
2016-10-14 22:12:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
hook global BufSetOption filetype=lua %{
|
2017-11-03 10:34:41 +03:00
|
|
|
set-option buffer comment_line '--'
|
2017-10-16 17:07:52 +03:00
|
|
|
set-option buffer comment_block_begin '--[['
|
|
|
|
set-option buffer comment_block_end ']]'
|
2016-10-14 22:12:01 +03:00
|
|
|
}
|
|
|
|
|
2016-10-15 11:04:43 +03:00
|
|
|
hook global BufSetOption filetype=markdown %{
|
2017-11-03 10:34:41 +03:00
|
|
|
set-option buffer comment_line ''
|
2019-11-12 15:21:54 +03:00
|
|
|
set-option buffer comment_block_begin '[//]: # "'
|
|
|
|
set-option buffer comment_block_end '"'
|
2016-10-15 11:04:43 +03:00
|
|
|
}
|
|
|
|
|
2020-12-18 10:08:56 +03:00
|
|
|
hook global BufSetOption filetype=(ocaml|coq) %{
|
2021-10-04 20:11:55 +03:00
|
|
|
set-option buffer comment_line ''
|
2020-12-18 10:08:56 +03:00
|
|
|
set-option buffer comment_block_begin '(* '
|
|
|
|
set-option buffer comment_block_end ' *)'
|
|
|
|
}
|
|
|
|
|
2020-12-28 21:14:57 +03:00
|
|
|
hook global BufSetOption filetype=((free|object)?pascal|delphi) %{
|
2021-07-17 10:21:47 +03:00
|
|
|
set-option buffer comment_line '//'
|
2020-12-28 21:14:57 +03:00
|
|
|
set-option buffer comment_block_begin '{'
|
|
|
|
set-option buffer comment_block_end '}'
|
|
|
|
}
|
|
|
|
|
2016-10-15 11:04:43 +03:00
|
|
|
hook global BufSetOption filetype=perl %{
|
2017-10-16 17:07:52 +03:00
|
|
|
set-option buffer comment_block_begin '#['
|
|
|
|
set-option buffer comment_block_end ']'
|
2016-10-15 11:04:43 +03:00
|
|
|
}
|
|
|
|
|
2021-07-16 18:55:10 +03:00
|
|
|
hook global BufSetOption filetype=(pug|zig|cue) %{
|
2017-10-16 17:07:52 +03:00
|
|
|
set-option buffer comment_line '//'
|
2016-10-15 11:04:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
hook global BufSetOption filetype=python %{
|
2017-10-16 17:07:52 +03:00
|
|
|
set-option buffer comment_block_begin "'''"
|
|
|
|
set-option buffer comment_block_end "'''"
|
2016-10-14 22:12:01 +03:00
|
|
|
}
|
|
|
|
|
2021-01-21 17:35:35 +03:00
|
|
|
hook global BufSetOption filetype=r %{
|
2021-01-21 17:12:41 +03:00
|
|
|
set-option buffer comment_line '#'
|
|
|
|
}
|
|
|
|
|
2016-10-15 11:04:43 +03:00
|
|
|
hook global BufSetOption filetype=ragel %{
|
2017-11-03 10:34:41 +03:00
|
|
|
set-option buffer comment_line '%%'
|
2017-10-16 17:07:52 +03:00
|
|
|
set-option buffer comment_block_begin '%%{'
|
|
|
|
set-option buffer comment_block_end '}%%'
|
2016-10-14 22:12:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
hook global BufSetOption filetype=ruby %{
|
2017-10-16 17:07:52 +03:00
|
|
|
set-option buffer comment_block_begin '^begin='
|
|
|
|
set-option buffer comment_block_end '^=end'
|
2016-10-14 22:12:01 +03:00
|
|
|
}
|
|
|
|
|
2017-10-16 17:07:52 +03:00
|
|
|
define-command comment-block -docstring '(un)comment selections using block comments' %{
|
2018-05-07 00:29:52 +03:00
|
|
|
evaluate-commands %sh{
|
2017-10-16 17:07:52 +03:00
|
|
|
if [ -z "${kak_opt_comment_block_begin}" ] || [ -z "${kak_opt_comment_block_end}" ]; then
|
|
|
|
echo "fail \"The 'comment_block' options are empty, could not comment the selection\""
|
2015-10-25 15:17:36 +03:00
|
|
|
fi
|
2017-10-16 17:07:52 +03:00
|
|
|
}
|
2018-07-05 21:49:05 +03:00
|
|
|
evaluate-commands -save-regs '"/' -draft %{
|
2017-10-16 17:07:52 +03:00
|
|
|
# Keep non-empty selections
|
|
|
|
execute-keys <a-K>\A\s*\z<ret>
|
|
|
|
|
|
|
|
try %{
|
2017-11-23 12:30:10 +03:00
|
|
|
# Assert that the selection has been commented
|
|
|
|
set-register / "\A\Q%opt{comment_block_begin}\E.*\Q%opt{comment_block_end}\E\n*\z"
|
|
|
|
execute-keys "s<ret>"
|
|
|
|
# Uncomment it
|
|
|
|
set-register / "\A\Q%opt{comment_block_begin}\E|\Q%opt{comment_block_end}\E\n*\z"
|
|
|
|
execute-keys s<ret>d
|
2017-10-16 17:07:52 +03:00
|
|
|
} catch %{
|
2017-11-23 12:30:10 +03:00
|
|
|
# Comment the selection
|
|
|
|
set-register '"' "%opt{comment_block_begin}"
|
|
|
|
execute-keys P
|
|
|
|
set-register '"' "%opt{comment_block_end}"
|
|
|
|
execute-keys p
|
2017-10-16 17:07:52 +03:00
|
|
|
}
|
2015-10-25 15:17:36 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-03 10:34:41 +03:00
|
|
|
define-command comment-line -docstring '(un)comment selected lines using line comments' %{
|
2018-05-07 00:29:52 +03:00
|
|
|
evaluate-commands %sh{
|
2017-10-16 17:07:52 +03:00
|
|
|
if [ -z "${kak_opt_comment_line}" ]; then
|
|
|
|
echo "fail \"The 'comment_line' option is empty, could not comment the line\""
|
2015-10-25 15:17:36 +03:00
|
|
|
fi
|
2017-10-16 17:07:52 +03:00
|
|
|
}
|
2018-07-06 00:29:53 +03:00
|
|
|
evaluate-commands -save-regs '"/' -draft %{
|
2017-10-16 17:07:52 +03:00
|
|
|
# Select the content of the lines, without indentation
|
2018-03-30 01:29:05 +03:00
|
|
|
execute-keys <a-s>gi<a-l>
|
2015-10-25 15:17:36 +03:00
|
|
|
|
2017-10-16 17:07:52 +03:00
|
|
|
try %{
|
|
|
|
# Keep non-empty lines
|
|
|
|
execute-keys <a-K>\A\s*\z<ret>
|
2018-06-29 00:43:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
try %{
|
|
|
|
set-register / "\A\Q%opt{comment_line}\E\h?"
|
2015-10-25 15:17:36 +03:00
|
|
|
|
|
|
|
try %{
|
2018-06-29 00:43:00 +03:00
|
|
|
# See if there are any uncommented lines in the selection
|
|
|
|
execute-keys -draft <a-K><ret>
|
|
|
|
|
|
|
|
# There are uncommented lines, so comment everything
|
2018-05-22 14:24:54 +03:00
|
|
|
set-register '"' "%opt{comment_line} "
|
2018-06-29 01:56:37 +03:00
|
|
|
align-selections-left
|
2017-11-23 12:30:10 +03:00
|
|
|
execute-keys P
|
2018-06-29 00:43:00 +03:00
|
|
|
} catch %{
|
|
|
|
# All lines were commented, so uncomment everything
|
|
|
|
execute-keys s<ret>d
|
2015-10-25 15:17:36 +03:00
|
|
|
}
|
2017-10-16 17:07:52 +03:00
|
|
|
}
|
2015-10-25 15:17:36 +03:00
|
|
|
}
|
|
|
|
}
|
2018-06-29 00:43:00 +03:00
|
|
|
|
2018-06-29 01:56:37 +03:00
|
|
|
define-command align-selections-left -docstring 'extend selections to the left to align with the leftmost selected column' %{
|
2018-07-06 00:29:53 +03:00
|
|
|
evaluate-commands %sh{
|
2018-07-06 00:46:21 +03:00
|
|
|
leftmost_column=$(echo "$kak_selections_desc" | tr ' ' '\n' | cut -d',' -f1 | cut -d'.' -f2 | sort -n | head -n1)
|
2018-06-29 02:05:00 +03:00
|
|
|
aligned_selections=$(echo "$kak_selections_desc" | sed -E "s/\.[0-9]+,/.$leftmost_column,/g")
|
2018-06-29 00:43:00 +03:00
|
|
|
echo "select $aligned_selections"
|
|
|
|
}
|
|
|
|
}
|