added(py): command to edit settings
This commit is contained in:
parent
afd8c2de24
commit
a23035ce18
|
@ -107,6 +107,8 @@ while not (command == "quit" or command == "exit" or command == "q"):
|
||||||
elif command[0:7] == "export ":
|
elif command[0:7] == "export ":
|
||||||
action = "export"
|
action = "export"
|
||||||
command = command[7:]
|
command = command[7:]
|
||||||
|
elif command == "settings":
|
||||||
|
action = "settings"
|
||||||
|
|
||||||
try:
|
try:
|
||||||
index = int(command)
|
index = int(command)
|
||||||
|
@ -130,6 +132,9 @@ while not (command == "quit" or command == "exit" or command == "q"):
|
||||||
elif action == "export":
|
elif action == "export":
|
||||||
if note:
|
if note:
|
||||||
writetextfile("data/" + note["title"] + ".md", note["content"])
|
writetextfile("data/" + note["title"] + ".md", note["content"])
|
||||||
|
elif action == "settings":
|
||||||
|
subprocess.call(settings["commands"]["editor"] + ["settings.json"])
|
||||||
|
settings = json.loads(readtextfile("settings.json"))
|
||||||
elif note and not action == "grep":
|
elif note and not action == "grep":
|
||||||
editnote(note)
|
editnote(note)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue