default EDITOR

This commit is contained in:
Daniel STAN 2013-07-27 17:41:38 +02:00
parent 53324fa30e
commit 5bcd33019a
2 changed files with 1 additions and 5 deletions

View file

@ -285,7 +285,7 @@ def editor(texte, annotations=""):
for l in annotations.split('\n'): for l in annotations.split('\n'):
f.write("# %s\n" % l.encode('utf-8')) f.write("# %s\n" % l.encode('utf-8'))
f.flush() f.flush()
proc = subprocess.Popen(os.getenv('EDITOR') + ' ' + f.name, shell=True) proc = subprocess.Popen([os.getenv('EDITOR', '/usr/bin/editor'), f.name])
os.waitpid(proc.pid, 0) os.waitpid(proc.pid, 0)
f.seek(0) f.seek(0)
ntexte = f.read() ntexte = f.read()

View file

@ -1,9 +1,5 @@
# Fonction de notre auto completion # Fonction de notre auto completion
if [[ "$EDITOR" = "" ]]; then
export EDITOR="nano";
fi
_cranspasswords(){ _cranspasswords(){
# declaration des variables locales # declaration des variables locales
local argc first last prev cur cur_first_char opts_short opts role_dir pass_dir server server_list role_list pass_list timeout local argc first last prev cur cur_first_char opts_short opts role_dir pass_dir server server_list role_list pass_list timeout