Made toggle_comments language dependent (#463)

* Made toggle_comments language dependent

* Fixed Test Cases

* Added clippy suggestion

* Small Fixes

* Clippy Suggestion

Co-authored-by: Cor <prive@corpeters.nl>
pull/469/head
Cor Peters 3 years ago committed by GitHub
parent 0aa43902ca
commit cd65a48635
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -38,18 +38,18 @@ fn find_line_comment(
} }
#[must_use] #[must_use]
pub fn toggle_line_comments(doc: &Rope, selection: &Selection) -> Transaction { pub fn toggle_line_comments(doc: &Rope, selection: &Selection, token: Option<&str>) -> Transaction {
let text = doc.slice(..); let text = doc.slice(..);
let mut changes: Vec<Change> = Vec::new(); let mut changes: Vec<Change> = Vec::new();
let token = "//"; let token = token.unwrap_or("//");
let comment = Tendril::from(format!("{} ", token)); let comment = Tendril::from(format!("{} ", token));
for selection in selection { for selection in selection {
let start = text.char_to_line(selection.from()); let start = text.char_to_line(selection.from());
let end = text.char_to_line(selection.to()); let end = text.char_to_line(selection.to());
let lines = start..end + 1; let lines = start..end + 1;
let (commented, skipped, min) = find_line_comment(token, text, lines.clone()); let (commented, skipped, min) = find_line_comment(&token, text, lines.clone());
changes.reserve((end - start).saturating_sub(skipped.len())); changes.reserve((end - start).saturating_sub(skipped.len()));
@ -95,14 +95,14 @@ mod test {
assert_eq!(res, (false, vec![1], 2)); assert_eq!(res, (false, vec![1], 2));
// comment // comment
let transaction = toggle_line_comments(&state.doc, &state.selection); let transaction = toggle_line_comments(&state.doc, &state.selection, None);
transaction.apply(&mut state.doc); transaction.apply(&mut state.doc);
state.selection = state.selection.clone().map(transaction.changes()); state.selection = state.selection.clone().map(transaction.changes());
assert_eq!(state.doc, " // 1\n\n // 2\n // 3"); assert_eq!(state.doc, " // 1\n\n // 2\n // 3");
// uncomment // uncomment
let transaction = toggle_line_comments(&state.doc, &state.selection); let transaction = toggle_line_comments(&state.doc, &state.selection, None);
transaction.apply(&mut state.doc); transaction.apply(&mut state.doc);
state.selection = state.selection.clone().map(transaction.changes()); state.selection = state.selection.clone().map(transaction.changes());
assert_eq!(state.doc, " 1\n\n 2\n 3"); assert_eq!(state.doc, " 1\n\n 2\n 3");

@ -265,6 +265,7 @@ where
config: None, config: None,
// //
roots: vec![], roots: vec![],
comment_token: None,
auto_format: false, auto_format: false,
language_server: None, language_server: None,
indent: Some(IndentationConfiguration { indent: Some(IndentationConfiguration {

@ -35,6 +35,7 @@ pub struct LanguageConfiguration {
pub scope: String, // source.rust pub scope: String, // source.rust
pub file_types: Vec<String>, // filename ends_with? <Gemfile, rb, etc> pub file_types: Vec<String>, // filename ends_with? <Gemfile, rb, etc>
pub roots: Vec<String>, // these indicate project roots <.git, Cargo.toml> pub roots: Vec<String>, // these indicate project roots <.git, Cargo.toml>
pub comment_token: Option<String>,
pub config: Option<String>, pub config: Option<String>,
#[serde(default)] #[serde(default)]

@ -3399,7 +3399,11 @@ fn hover(cx: &mut Context) {
// comments // comments
fn toggle_comments(cx: &mut Context) { fn toggle_comments(cx: &mut Context) {
let (view, doc) = current!(cx.editor); let (view, doc) = current!(cx.editor);
let transaction = comment::toggle_line_comments(doc.text(), doc.selection(view.id)); let token = doc
.language_config()
.and_then(|lc| lc.comment_token.as_ref())
.map(|tc| tc.as_ref());
let transaction = comment::toggle_line_comments(doc.text(), doc.selection(view.id), token);
doc.apply(&transaction, view.id); doc.apply(&transaction, view.id);
doc.append_changes_to_history(view.id); doc.append_changes_to_history(view.id);

@ -5,6 +5,7 @@ injection-regex = "rust"
file-types = ["rs"] file-types = ["rs"]
roots = [] roots = []
auto-format = true auto-format = true
comment_token = "//"
config = """ config = """
{ {
"cargo": { "cargo": {
@ -25,6 +26,7 @@ scope = "source.toml"
injection-regex = "toml" injection-regex = "toml"
file-types = ["toml"] file-types = ["toml"]
roots = [] roots = []
comment_token = "#"
indent = { tab-width = 2, unit = " " } indent = { tab-width = 2, unit = " " }
@ -52,6 +54,7 @@ scope = "source.c"
injection-regex = "c" injection-regex = "c"
file-types = ["c"] # TODO: ["h"] file-types = ["c"] # TODO: ["h"]
roots = [] roots = []
comment_token = "//"
language-server = { command = "clangd" } language-server = { command = "clangd" }
indent = { tab-width = 2, unit = " " } indent = { tab-width = 2, unit = " " }
@ -62,6 +65,7 @@ scope = "source.cpp"
injection-regex = "cpp" injection-regex = "cpp"
file-types = ["cc", "cpp", "hpp", "h"] file-types = ["cc", "cpp", "hpp", "h"]
roots = [] roots = []
comment_token = "//"
language-server = { command = "clangd" } language-server = { command = "clangd" }
indent = { tab-width = 2, unit = " " } indent = { tab-width = 2, unit = " " }
@ -73,6 +77,7 @@ injection-regex = "go"
file-types = ["go"] file-types = ["go"]
roots = ["Gopkg.toml", "go.mod"] roots = ["Gopkg.toml", "go.mod"]
auto-format = true auto-format = true
comment_token = "//"
language-server = { command = "gopls" } language-server = { command = "gopls" }
# TODO: gopls needs utf-8 offsets? # TODO: gopls needs utf-8 offsets?
@ -84,6 +89,7 @@ scope = "source.js"
injection-regex = "^(js|javascript)$" injection-regex = "^(js|javascript)$"
file-types = ["js"] file-types = ["js"]
roots = [] roots = []
comment_token = "//"
# TODO: highlights-jsx, highlights-params # TODO: highlights-jsx, highlights-params
indent = { tab-width = 2, unit = " " } indent = { tab-width = 2, unit = " " }
@ -123,6 +129,7 @@ scope = "source.python"
injection-regex = "python" injection-regex = "python"
file-types = ["py"] file-types = ["py"]
roots = [] roots = []
comment_token = "#"
language-server = { command = "pyls" } language-server = { command = "pyls" }
# TODO: pyls needs utf-8 offsets # TODO: pyls needs utf-8 offsets
@ -143,6 +150,7 @@ scope = "source.ruby"
injection-regex = "ruby" injection-regex = "ruby"
file-types = ["rb"] file-types = ["rb"]
roots = [] roots = []
comment_token = "#"
language-server = { command = "solargraph", args = ["stdio"] } language-server = { command = "solargraph", args = ["stdio"] }
indent = { tab-width = 2, unit = " " } indent = { tab-width = 2, unit = " " }
@ -153,6 +161,7 @@ scope = "source.bash"
injection-regex = "bash" injection-regex = "bash"
file-types = ["sh", "bash"] file-types = ["sh", "bash"]
roots = [] roots = []
comment_token = "#"
language-server = { command = "bash-language-server", args = ["start"] } language-server = { command = "bash-language-server", args = ["start"] }
indent = { tab-width = 2, unit = " " } indent = { tab-width = 2, unit = " " }
@ -172,6 +181,7 @@ scope = "source.tex"
injection-regex = "tex" injection-regex = "tex"
file-types = ["tex"] file-types = ["tex"]
roots = [] roots = []
comment_token = "%"
indent = { tab-width = 4, unit = "\t" } indent = { tab-width = 4, unit = "\t" }
@ -181,6 +191,7 @@ scope = "source.julia"
injection-regex = "julia" injection-regex = "julia"
file-types = ["jl"] file-types = ["jl"]
roots = [] roots = []
comment_token = "#"
language-server = { command = "julia", args = [ "--startup-file=no", "--history-file=no", "-e", "using LanguageServer;using Pkg;import StaticLint;import SymbolServer;env_path = dirname(Pkg.Types.Context().env.project_file);server = LanguageServer.LanguageServerInstance(stdin, stdout, env_path, \"\");server.runlinter = true;run(server);" ] } language-server = { command = "julia", args = [ "--startup-file=no", "--history-file=no", "-e", "using LanguageServer;using Pkg;import StaticLint;import SymbolServer;env_path = dirname(Pkg.Types.Context().env.project_file);server = LanguageServer.LanguageServerInstance(stdin, stdout, env_path, \"\");server.runlinter = true;run(server);" ] }
indent = { tab-width = 2, unit = " " } indent = { tab-width = 2, unit = " " }
@ -190,5 +201,6 @@ indent = { tab-width = 2, unit = " " }
# injection-regex = "haskell" # injection-regex = "haskell"
# file-types = ["hs"] # file-types = ["hs"]
# roots = [] # roots = []
# comment_token = "--"
# #
# indent = { tab-width = 2, unit = " " } # indent = { tab-width = 2, unit = " " }

Loading…
Cancel
Save