diff --git a/rc/c-family.kak b/rc/c-family.kak index 0413301f..89e919e8 100644 --- a/rc/c-family.kak +++ b/rc/c-family.kak @@ -196,10 +196,8 @@ def c-family-comment-selection -docstring "Comment the current selection" %{ ## Comment the selection exec %{a */i/* 3H} } catch %{ - try %{ - ## Uncomment the commented selection - exec -draft %{s(\A/\* )|( \*/\z)d} - } + ## Uncomment the commented selection + exec -draft %{s(\A/\* )|( \*/\z)d} } } } @@ -219,10 +217,8 @@ def c-family-comment-line -docstring "Comment the current line" %{ ## Comment the line exec %{i// 3H} } catch %{ - try %{ - ## Uncomment the line - exec -draft %{s^//\h*d} - } + ## Uncomment the line + exec -draft %{s^//\h*d} } } }