9 May 2013 22:15
[Jed-users-l] py_check_indentation
John K. Parejko <parejkoj <at> gmail.com>
2013-05-09 20:15:58 GMT
2013-05-09 20:15:58 GMT
Hello,
When opening a new python file in jed, I would like to run the py_check_indentation() function from the
jedmodes version of pymodes.sl. I've got pymodes running (I can toggle between the dfa and normal syntax
highlighting, for example), and have this in my .jedrc:
define python_mode_hook ()
{
py_check_indentation();
}
but I get this error when opening a .py file
py_check_indentation is undefined
during startup. It looks like .jedrc is loaded before pymode.sl is loaded. How do I run a function from
pymode in .jedrc?
Thanks,
John
_______________________________________________
Jed-users-l mailing list
Jed-users-l <at> jtan.com
http://mailman.jtan.com/mailman/listinfo/jed-users-l
Being an old VMS hacker, I really like it's integrated versioning. Example:
file.txt;1
file.txt;2
file.txt;3
(the bigger the number, the older the file)
How about extending JED's backup file concept to a similar versioning
system for UNIX? I think of this kind of naming:
file.txt
file.txt~1
file.txt~2
file.txt~3
When one saves a new file.txt then JED should rename the old files:
file.txt~3 --> file.txt~4
file.txt~2 --> file.txt~3
file.txt~1 --> file.txt~2
file.txt --> file.txt~1
A JED config variable would define the maximum number of backup versions.
RSS Feed