ymacs
ymacs copied to clipboard
Ymacs is eating first slash when opening files
I've try to open a file using M-x find_file
and when I type /home/kuba/.bashrc
fs_getFileContents
get executed with home/kuba/.bashrc
It's caused by fs_normalizePath, I fixed the issue by using this:
Ymacs.prototype.fs_normalizePath = function(path) {
return path;
};