Skip to content

Commit b20f85a

Browse files
committed
Autoscroll on Enter #135
1 parent 92b00d9 commit b20f85a

4 files changed

+12
-0
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 4.4.1 - Apr 5, 2025
2+
3+
- Autoscroll on Enter #135
4+
15
### 4.4.0 - Dec 30, 2024
26

37
- New `Align Cursors` command

Clojure Sublimed Dark.sublime-color-scheme

+3
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,9 @@
164164
{"scope": "region.pinkish",
165165
"background": "#E64CE680"},
166166

167+
{"scope": "region.greyish",
168+
"background": "#FFFFFF10"},
169+
167170
// {"scope": "region.eval.lookup",
168171
// "foreground": "hsl(208, 100%, 50%)"},
169172
]

Clojure Sublimed Light.sublime-color-scheme

+3
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,9 @@
181181
{"scope": "region.pinkish",
182182
"background": "#E64CE680"},
183183

184+
{"scope": "region.greyish",
185+
"background": "#00000010"},
186+
184187
// {"scope": "region.eval.lookup",
185188
// "foreground": "hsl(208, 100%, 50%)"},
186189
]

cs_indent.py

+2
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,8 @@ def run(self, edit):
196196
# Add selection at the end of newly inserted region
197197
view.sel().add(sublime.Region(point, point))
198198

199+
view.show(view.sel(), show_surrounds = False)
200+
199201
class ClojureSublimedAlignCursorsCommand(sublime_plugin.TextCommand):
200202
def run(self, edit):
201203
view = self.view

0 commit comments

Comments
 (0)