Como comentar várias linhas no nano de uma só vez?

6

Eu posso selecionar várias linhas usando Esc + A . Depois disso, que atalhos devo usar para comentar / descomentar as linhas selecionadas?

    
por krk 04.08.2018 / 09:29

1 resposta

7

Esc + 3 irá comentar ou descomentar as linhas selecionadas no editor nano . O caractere de comentário padrão usado é # (válido em muitas linguagens de script).

O caractere de comentário pode ser modificado pela opção comment no seu arquivo ~/.nanorc . Este é o manual :

comment "string"

Use the given string for commenting and uncommenting lines. If the string contains a vertical bar or pipe character (|), this designates bracket-style comments; for example, "/*|*/" for CSS files. The characters before the pipe are prepended to the line and the characters after the pipe are appended at the end of the line. If no pipe character is present, the full string is prepended; for example, "#" for Python files. If empty double quotes are specified, the comment/uncomment functions are disabled; for example, "" for JSON. The default value is "#".

Veja também o manual nanorc(5) em seu sistema ( man 5 nanorc ).

    
por 04.08.2018 / 09:34

Tags