ymacs icon indicating copy to clipboard operation
ymacs copied to clipboard

Ymacs is eating first slash when opening files

Open jcubic opened this issue 9 years ago • 1 comments

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

jcubic avatar Dec 18 '15 16:12 jcubic

It's caused by fs_normalizePath, I fixed the issue by using this:

Ymacs.prototype.fs_normalizePath = function(path) {
    return path;
};

jcubic avatar Dec 20 '15 16:12 jcubic