From 165227dac2ee91f5d4361e061bae26c1329ca9d3 Mon Sep 17 00:00:00 2001 From: Alex Leferry 2 Date: Sun, 15 Jan 2017 14:58:07 +0100 Subject: [PATCH] rename line and block comments options --- rc/core/comment.kak | 76 ++++++++++++++++++++++----------------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/rc/core/comment.kak b/rc/core/comment.kak index 003436dc..cbf48712 100644 --- a/rc/core/comment.kak +++ b/rc/core/comment.kak @@ -1,93 +1,93 @@ -## Characters that will be inserted at the beginning of a line to comment -decl str comment_line_chars "#" +## Line comments +decl str comment_line "#" -## Characters that will be used to surround a selection with -decl str-list comment_block_chars "" +## Block comments +decl str-list comment_block "" -## Default characters for all languages +## Default comments for all languages hook global BufSetOption filetype=asciidoc %{ - set buffer comment_block_chars '///:///' + set buffer comment_block '///:///' } hook global BufSetOption filetype=(c|cpp|go|java|javascript|objc|sass|scala|scss|swift) %{ - set buffer comment_line_chars '//' - set buffer comment_block_chars '/*:*/' + set buffer comment_line '//' + set buffer comment_block '/*:*/' } hook global BufSetOption filetype=(cabal|haskell|moon) %{ - set buffer comment_line_chars '--' + set buffer comment_line '--' } hook global BufSetOption filetype=clojure %{ - set buffer comment_line_chars '#_ ' - set buffer comment_block_chars '(comment :)' + set buffer comment_line '#_ ' + set buffer comment_block '(comment :)' } hook global BufSetOption filetype=coffee %{ - set buffer comment_block_chars '###:###' + set buffer comment_block '###:###' } hook global BufSetOption filetype=css %{ - set buffer comment_line_chars '' - set buffer comment_block_chars '/*:*/' + set buffer comment_line '' + set buffer comment_block '/*:*/' } hook global BufSetOption filetype=d %{ - set buffer comment_line_chars '//' - set buffer comment_block_chars '/+:+/' + set buffer comment_line '//' + set buffer comment_block '/+:+/' } hook global BufSetOption filetype=(gas|ini) %{ - set buffer comment_line_chars ';' + set buffer comment_line ';' } hook global BufSetOption filetype=haml %{ - set buffer comment_line_chars '-#' + set buffer comment_line '-#' } hook global BufSetOption filetype=html %{ - set buffer comment_line_chars '' - set buffer comment_block_chars '' + set buffer comment_line '' + set buffer comment_block '' } hook global BufSetOption filetype=latex %{ - set buffer comment_line_chars '%' + set buffer comment_line '%' } hook global BufSetOption filetype=lisp %{ - set buffer comment_line_chars ';' - set buffer comment_block_chars '#|:|#' + set buffer comment_line ';' + set buffer comment_block '#|:|#' } hook global BufSetOption filetype=lua %{ - set buffer comment_line_chars '--' - set buffer comment_block_chars '--[[:]]' + set buffer comment_line '--' + set buffer comment_block '--[[:]]' } hook global BufSetOption filetype=markdown %{ - set buffer comment_line_chars '' - set buffer comment_block_chars '[//]: # (:)' + set buffer comment_line '' + set buffer comment_block '[//]: # (:)' } hook global BufSetOption filetype=perl %{ - set buffer comment_block_chars '#[:]' + set buffer comment_block '#[:]' } hook global BufSetOption filetype=(pug|rust) %{ - set buffer comment_line_chars '//' + set buffer comment_line '//' } hook global BufSetOption filetype=python %{ - set buffer comment_block_chars '\'\'\':\'\'\'' + set buffer comment_block '\'\'\':\'\'\'' } hook global BufSetOption filetype=ragel %{ - set buffer comment_line_chars '%%' - set buffer comment_block_chars '%%{:}%%' + set buffer comment_line '%%' + set buffer comment_block '%%{:}%%' } hook global BufSetOption filetype=ruby %{ - set buffer comment_block_chars '^begin=:^=end' + set buffer comment_block '^begin=:^=end' } def comment-block -docstring "(un)comment selected lines using block comments" %{ @@ -97,11 +97,11 @@ def comment-block -docstring "(un)comment selected lines using block comments" % printf %s\\n "$@" | sed 's,<,,g' } - readonly opening=$(exec_proof "${kak_opt_comment_block_chars%:*}") - readonly closing=$(exec_proof "${kak_opt_comment_block_chars##*:}") + readonly opening=$(exec_proof "${kak_opt_comment_block%:*}") + readonly closing=$(exec_proof "${kak_opt_comment_block##*:}") if [ -z "${opening}" ] || [ -z "${closing}" ]; then - echo "echo -debug 'The \`comment_block_chars\` variable is empty, could not comment the selection'" + echo "echo -debug 'The \`comment_block\` variable is empty, could not comment the selection'" exit fi @@ -125,11 +125,11 @@ def comment-block -docstring "(un)comment selected lines using block comments" % def comment-line -docstring "(un)comment selected lines using line comments" %{ %sh{ - readonly opening="${kak_opt_comment_line_chars}" + readonly opening="${kak_opt_comment_line}" readonly opening_escaped="\\Q${opening}\\E" if [ -z "${opening}" ]; then - echo "echo -debug 'The \`comment_line_chars\` variable is empty, could not comment the line'" + echo "echo -debug 'The \`comment_line\` variable is empty, could not comment the line'" exit fi