Make Visual Studio Code integration go directly to lines

db4
Benjamin Pollack 2016-02-15 15:42:31 -05:00
parent 97d1ec759e
commit 1887695d45
1 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,7 @@
! Copyright (C) 2015 Doug Coleman.
! See http://factorcode.org/license.txt for BSD license.
USING: editors kernel make memoize namespaces system vocabs ;
USING: editors kernel make math.parser memoize namespaces
sequences system vocabs ;
IN: editors.visual-studio-code
SINGLETON: visual-studio-code
@ -19,7 +20,8 @@ M: macosx find-visual-studio-code-invocation
M: visual-studio-code editor-command ( file line -- command )
[
visual-studio-code-invocation % drop ,
visual-studio-code-invocation % "-g" ,
number>string ":" glue ,
] { } make ;
os windows? [ "editors.visual-studio-code.windows" require ] when