Okey, now I made it to work.
Solution:
Install git-url helper script, according to the readme in that.This is a bash script but runs also on Windows if Git Bash installed. Install NppExec plugin to Notepad++ Use below NppExec script , save it to a name like “OpenGitInBrowser” NPP_CONSOLE 0 NPE_CONSOLE v+ cd "$(CURRENT_DIRECTORY)" git url "$(FILE_NAME)" npp_run firefox "$(OUTPUT)#L$(CURRENT_LINE)" If you view or edit a file in git repo in Notepad++, press F6, select the above script, and done.
It will jump to the actual line number in browser, in the given branch. This URL format is compatible with gitlab. Didn’t test with other git repo services,
It runs hidden (no console opening for NppExec), and it takes some seconds because of bash script, bit working fine.
:)