]> gitweb.factorcode.org Git - factor.git/commitdiff
remove gvim.backend
authorDoug Coleman <doug.coleman@gmail.com>
Mon, 1 Sep 2008 17:00:14 +0000 (12:00 -0500)
committerDoug Coleman <doug.coleman@gmail.com>
Mon, 1 Sep 2008 17:00:14 +0000 (12:00 -0500)
basis/editors/gvim/backend/authors.txt [deleted file]
basis/editors/gvim/backend/backend.factor [deleted file]
basis/editors/gvim/backend/tags.txt [deleted file]
basis/editors/gvim/gvim.factor
basis/editors/gvim/unix/unix.factor
basis/editors/gvim/windows/windows.factor

diff --git a/basis/editors/gvim/backend/authors.txt b/basis/editors/gvim/backend/authors.txt
deleted file mode 100755 (executable)
index 7c1b2f2..0000000
+++ /dev/null
@@ -1 +0,0 @@
-Doug Coleman
diff --git a/basis/editors/gvim/backend/backend.factor b/basis/editors/gvim/backend/backend.factor
deleted file mode 100644 (file)
index e2e2f06..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-USING: io.backend ;
-IN: editors.gvim.backend
-
-HOOK: gvim-path io-backend ( -- path )
diff --git a/basis/editors/gvim/backend/tags.txt b/basis/editors/gvim/backend/tags.txt
deleted file mode 100644 (file)
index 6bf6830..0000000
+++ /dev/null
@@ -1 +0,0 @@
-unportable
index 041f3db675cdd75c7a5bc1c51ea1c8d072eab2ff..4cc9de17a1e2dab05358c8b99708a148425bfa24 100755 (executable)
@@ -1,10 +1,12 @@
 USING: io.backend io.files kernel math math.parser
 namespaces sequences system combinators
-editors.vim editors.gvim.backend vocabs.loader ;
+editors.vim vocabs.loader ;
 IN: editors.gvim
 
 SINGLETON: gvim
 
+HOOK: gvim-path io-backend ( -- path )
+
 M: gvim vim-command ( file line -- string )
     [ gvim-path , swap , "+" swap number>string append , ] { } make ;
 
index 3b8f7454c10d85f610906e14e055d13501a86481..82b6bf199d0a2605730b4dc955f6a5175863e3b1 100644 (file)
@@ -1,4 +1,4 @@
-USING: io.unix.backend kernel namespaces editors.gvim.backend
+USING: io.unix.backend kernel namespaces editors.gvim
 system ;
 IN: editors.gvim.unix
 
index daf5409c94716323c4572eefd291c4002374aca2..8c4e1aaacb17221ed3ec65dea7a82f20b07b827d 100755 (executable)
@@ -1,4 +1,4 @@
-USING: editors.gvim.backend io.files io.windows kernel namespaces
+USING: editors.gvim io.files io.windows kernel namespaces
 sequences windows.shell32 io.paths system ;
 IN: editors.gvim.windows