diff options
author | Kirawi | 2021-11-03 03:00:52 +0000 |
---|---|---|
committer | GitHub | 2021-11-03 03:00:52 +0000 |
commit | ee889aaa854d0036da3bae16252bc382e50b0df6 (patch) | |
tree | 6b084b76276c1c8f7b6af331329f89f5623f3b4a /helix-core | |
parent | 7a0c4322eaeef7325878abe9a99adde4ad905f5e (diff) |
Updated tree-sitter query scopes (#896)
* updated theme scopes
variable.property -> variable.field
property -> variable.field
* updated theme scopes
* update book and themes
updated book and themes to reflect scope changes
* wip
* update more queries
* update dark_plus.toml
Diffstat (limited to 'helix-core')
-rw-r--r-- | helix-core/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-core/src/lib.rs b/helix-core/src/lib.rs index d971464a..96f88ee4 100644 --- a/helix-core/src/lib.rs +++ b/helix-core/src/lib.rs @@ -35,6 +35,7 @@ pub fn find_first_non_whitespace_char(line: RopeSlice) -> Option<usize> { line.chars().position(|ch| !ch.is_whitespace()) } +/// Find `.git` root. pub fn find_root(root: Option<&str>) -> Option<std::path::PathBuf> { let current_dir = std::env::current_dir().expect("unable to determine current directory"); |