andry81

Results 68 comments of andry81

>Effect is the same as before on Windows 7 - it launches the Notepad++ but the file in question is not opened. @mere-human Yes, it should open it.

I've not found any good solution from there for the Win7. And I don't want to use the menu open dialog to open the long path, I need to use...

I've workarounded the issue through the PythonScript + conversion into a short path: https://github.com/andry81/contools--notepadplusplus/tree/HEAD/README_EN.txt https://github.com/andry81/contools--notepadplusplus/blob/c0dad31a0711085a7d7855bde9fec556edf36834/scripts/python/tacklebar/libs/npplib.py#L157 **USAGE:** ```cmd notepad++.exe -nosession -multiInst -z -from_utf16le -z --open_short_path_if_gt_limit -z 258 -z --open_from_file_list -z ""...

> the output is empty, I think it be aaaa ? I think it does match the empty sequence at first. > I made some effort to resolve ths, but...

> Try: > > ``` > re='(a+)' > [[ ' aaaa' =~ $re ]] && echo ${BASH_REMATCH[0]} || echo no > aaaa > ``` It has no difference with this:...

> but you must use the extra curly braces to get the no when the regex is not found > > ``` > [[ ' aaaa ' =~ (a+) ]]...

> excuse me, let me make point clear, why the following output is empty? [[ ' aaaa' =~ a* ]] && echo ${BASH_REMATCH[0]} > # output is empty Output is...

I got some kind of solution here, but it is entirely for multiprocess: https://github.com/tsroten/fcache/issues/26 May be you find it useful.