Skip to content

Commit

Permalink
Ensure use of local file paths with setting breakpoint signs, #54
Browse files Browse the repository at this point in the history
  • Loading branch information
joonty committed Mar 6, 2013
1 parent ae7d216 commit 5f38920
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/python/vdebug/ui/vimui.py
Expand Up @@ -103,7 +103,7 @@ def register_breakpoint(self,breakpoint):
def place_breakpoint(self,sign_id,file,line):
vim.command('sign place '+str(sign_id)+\
' name=breakpt line='+str(line)+\
' file='+file)
' file='+file.as_local())

def remove_breakpoint(self,breakpoint):
id = breakpoint.id
Expand Down

0 comments on commit 5f38920

Please sign in to comment.