this repo has no description

[jj] don't wait on editor for config changes

Changed files
+13 -9
private_dot_config
private_jj
+13 -9
private_dot_config/private_jj/config.toml
··· 145 145 [git] 146 146 push-new-bookmarks = true 147 147 148 - [[--scope]] 149 - --when.commands = ["diff", "show"] 150 - 151 - [--scope.ui] 152 - # https://github.com/jj-vcs/jj/blob/v0.25.0/docs/config.md#processing-contents-to-be-paged 153 - pager = "delta" 154 - # NOTE: this is required when using `delta` as a pager 155 - diff-formatter = ":git" 156 - 157 148 [user] 158 149 name = "André Arko" 159 150 email = "andre@arko.net" ··· 161 152 [ui] 162 153 editor = ["mvim", "-f", "--nomru", "-c", "au VimLeave * !open -b $__CFBundleIdentifier"] 163 154 diff-editor = ":builtin" 155 + 156 + # Don't wait on editor when editing config 157 + [[--scope]] 158 + --when.commands = ["config"] 159 + [--scope.ui] 160 + editor = ["mvim", "--nomru", "-c", "au VimLeave * !open -b $__CFBundleIdentifier"] 161 + 162 + [[--scope]] 163 + --when.commands = ["diff", "show"] 164 + [--scope.ui] 165 + pager = "delta" 166 + # NOTE: this is required when using `delta` as a pager 167 + diff-formatter = ":git" 164 168 165 169 [templates] 166 170 description_title = 'description.first_line().trim_end()'