Skip to content

Commit e08ae55

Browse files
committedSep 1, 2024
Update cpsm to use nvim
1 parent 426692c commit e08ae55

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎cpsm_config.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Configuration file for CPSM
22

33
# Command to run for opening the files when starting a new solution
4-
editor = "vim -p"
4+
editor = "nvim -p"
55

66
# Should CPSM open the input file along with the code file? This is particularly
77
# useful if your editor does not support files
@@ -318,6 +318,7 @@
318318
#
319319

320320
import importlib.util
321+
321322
module_spec = importlib.util.spec_from_file_location("postprocess",
322323
"local/postprocess.py")
323324
postprocessor = importlib.util.module_from_spec(module_spec)

0 commit comments

Comments
 (0)
Please sign in to comment.