diff options
author | Blaž Hrastnik | 2021-02-19 07:49:10 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-02-19 07:49:10 +0000 |
commit | 1e1dae1c11bf00b56213995679647ff30b664a17 (patch) | |
tree | 70c1d5bb2f1d3781eae332107cb67996d3fb7362 /helix-term/src | |
parent | 3f6f82b0c4c826df49dc7d37659257943975f67d (diff) |
Remove unused method.
Diffstat (limited to 'helix-term/src')
-rw-r--r-- | helix-term/src/commands.rs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 95c98b10..8aff8035 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -953,11 +953,6 @@ pub fn unindent(cx: &mut Context) { append_changes_to_history(cx); } -pub fn indent_selection(_cx: &mut Context) { - // loop over each line and recompute proper indentation - unimplemented!() -} - // pub fn save(cx: &mut Context) { |