Skip to content

Commit

Permalink
remove old files; reorg file structure
Browse files Browse the repository at this point in the history
  • Loading branch information
guillermooo committed Apr 9, 2015
1 parent 6cdaa08 commit 99fbede
Show file tree
Hide file tree
Showing 68 changed files with 53 additions and 54 deletions.
File renamed without changes.
16 changes: 8 additions & 8 deletions ex/parsers/new/nodes.py → ex/parser/nodes.py
@@ -1,13 +1,13 @@
from Vintageous.ex.ex_error import ERR_NO_RANGE_ALLOWED
from Vintageous.ex.ex_error import VimError
from Vintageous.ex.parsers.new.tokens import TokenDigits
from Vintageous.ex.parsers.new.tokens import TokenDot
from Vintageous.ex.parsers.new.tokens import TokenMark
from Vintageous.ex.parsers.new.tokens import TokenOffset
from Vintageous.ex.parsers.new.tokens import TokenOfSearch
from Vintageous.ex.parsers.new.tokens import TokenPercent
from Vintageous.ex.parsers.new.tokens import TokenSearchBackward
from Vintageous.ex.parsers.new.tokens import TokenSearchForward
from Vintageous.ex.parser.tokens import TokenDigits
from Vintageous.ex.parser.tokens import TokenDot
from Vintageous.ex.parser.tokens import TokenMark
from Vintageous.ex.parser.tokens import TokenOffset
from Vintageous.ex.parser.tokens import TokenOfSearch
from Vintageous.ex.parser.tokens import TokenPercent
from Vintageous.ex.parser.tokens import TokenSearchBackward
from Vintageous.ex.parser.tokens import TokenSearchForward
from Vintageous.vi.search import reverse_search_by_pt
from Vintageous.vi.utils import first_sel
from Vintageous.vi.utils import R
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file removed ex/parsers/new/__init__.py
Empty file.
2 changes: 1 addition & 1 deletion ex_commands.py
Expand Up @@ -19,7 +19,7 @@
from Vintageous.ex.ex_error import ERR_READONLY_FILE
from Vintageous.ex.ex_error import handle_not_implemented
from Vintageous.ex.ex_error import VimError
from Vintageous.ex.parsers.new.parser import parse_ex_command
from Vintageous.ex.parser.parser import parse_ex_command
from Vintageous.ex.plat.windows import get_oem_cp
from Vintageous.ex.plat.windows import get_startup_info
from Vintageous.state import State
Expand Down
4 changes: 2 additions & 2 deletions ex_main.py
Expand Up @@ -12,8 +12,8 @@
from Vintageous.ex.completions import wants_setting_completions
from Vintageous.ex.ex_error import display_error2
from Vintageous.ex.ex_error import VimError
from Vintageous.ex.parsers.new.parser import parse_ex_command
from Vintageous.ex.parsers.new.scanner_command_goto import TokenCommandGoto
from Vintageous.ex.parser.parser import parse_ex_command
from Vintageous.ex.parser.scanner_command_goto import TokenCommandGoto
from Vintageous.state import State
from Vintageous.vi.settings import iter_settings
from Vintageous.vi.sublime import show_ipanel
Expand Down
3 changes: 1 addition & 2 deletions manifest.json
Expand Up @@ -20,8 +20,7 @@
["./tests/commands/*.py", []],
["./vi/*.py", []],
["./ex/*.py", []],
["./ex/parsers/*.py", []],
["./ex/parsers/new/*.py", []],
["./ex/parser/*.py", []],
["./plugins/*.py", []],
["./ex/plat/*.py", []],

Expand Down
20 changes: 10 additions & 10 deletions tests/ex/parsers/new/test_nodes.py
@@ -1,15 +1,15 @@
import unittest

from Vintageous.ex.parsers.new.nodes import RangeNode
from Vintageous.ex.parsers.new.nodes import CommandLineNode
from Vintageous.ex.parsers.new.tokens import TokenDot
from Vintageous.ex.parsers.new.tokens import TokenDigits
from Vintageous.ex.parsers.new.tokens import TokenSearchForward
from Vintageous.ex.parsers.new.tokens import TokenSearchBackward
from Vintageous.ex.parsers.new.tokens import TokenPercent
from Vintageous.ex.parsers.new.tokens import TokenOffset
from Vintageous.ex.parsers.new.tokens import TokenMark
from Vintageous.ex.parsers.new.scanner_command_substitute import TokenCommandSubstitute
from Vintageous.ex.parser.nodes import RangeNode
from Vintageous.ex.parser.nodes import CommandLineNode
from Vintageous.ex.parser.tokens import TokenDot
from Vintageous.ex.parser.tokens import TokenDigits
from Vintageous.ex.parser.tokens import TokenSearchForward
from Vintageous.ex.parser.tokens import TokenSearchBackward
from Vintageous.ex.parser.tokens import TokenPercent
from Vintageous.ex.parser.tokens import TokenOffset
from Vintageous.ex.parser.tokens import TokenMark
from Vintageous.ex.parser.scanner_command_substitute import TokenCommandSubstitute

from Vintageous.tests import ViewTest

Expand Down
24 changes: 12 additions & 12 deletions tests/ex/parsers/new/test_parser.py
@@ -1,17 +1,17 @@
import unittest

from Vintageous.ex.parsers.new.parser import parse_ex_command
from Vintageous.ex.parsers.new.scanner import Scanner
from Vintageous.ex.parsers.new.tokens import TokenDot
from Vintageous.ex.parsers.new.tokens import TokenSearchForward
from Vintageous.ex.parsers.new.tokens import TokenSearchBackward
from Vintageous.ex.parsers.new.tokens import TokenDollar
from Vintageous.ex.parsers.new.tokens import TokenDigits
from Vintageous.ex.parsers.new.tokens import TokenPercent
from Vintageous.ex.parsers.new.tokens import TokenMark
from Vintageous.ex.parsers.new.tokens import TokenOffset
from Vintageous.ex.parsers.new.tokens import TokenComma
from Vintageous.ex.parsers.new.tokens import TokenSemicolon
from Vintageous.ex.parser.parser import parse_ex_command
from Vintageous.ex.parser.scanner import Scanner
from Vintageous.ex.parser.tokens import TokenDot
from Vintageous.ex.parser.tokens import TokenSearchForward
from Vintageous.ex.parser.tokens import TokenSearchBackward
from Vintageous.ex.parser.tokens import TokenDollar
from Vintageous.ex.parser.tokens import TokenDigits
from Vintageous.ex.parser.tokens import TokenPercent
from Vintageous.ex.parser.tokens import TokenMark
from Vintageous.ex.parser.tokens import TokenOffset
from Vintageous.ex.parser.tokens import TokenComma
from Vintageous.ex.parser.tokens import TokenSemicolon


class parse_line_ref_Tests(unittest.TestCase):
Expand Down
2 changes: 1 addition & 1 deletion tests/ex/parsers/new/test_parser_state.py
@@ -1,6 +1,6 @@
import unittest

from Vintageous.ex.parsers.new.parser import ParserState
from Vintageous.ex.parser.parser import ParserState


class ParserState_Tests(unittest.TestCase):
Expand Down
30 changes: 15 additions & 15 deletions tests/ex/parsers/new/test_scanner.py
@@ -1,20 +1,20 @@
import unittest

from Vintageous.ex.parsers.new.scanner import Scanner
from Vintageous.ex.parsers.new.scanner_command_substitute import TokenCommandSubstitute
from Vintageous.ex.parsers.new.scanner_command_write import TokenCommandWrite
from Vintageous.ex.parsers.new.state import EOF
from Vintageous.ex.parsers.new.tokens import TokenComma
from Vintageous.ex.parsers.new.tokens import TokenDigits
from Vintageous.ex.parsers.new.tokens import TokenDollar
from Vintageous.ex.parsers.new.tokens import TokenDot
from Vintageous.ex.parsers.new.tokens import TokenEof
from Vintageous.ex.parsers.new.tokens import TokenMark
from Vintageous.ex.parsers.new.tokens import TokenOffset
from Vintageous.ex.parsers.new.tokens import TokenPercent
from Vintageous.ex.parsers.new.tokens import TokenSearchBackward
from Vintageous.ex.parsers.new.tokens import TokenSearchForward
from Vintageous.ex.parsers.new.tokens import TokenSemicolon
from Vintageous.ex.parser.scanner import Scanner
from Vintageous.ex.parser.scanner_command_substitute import TokenCommandSubstitute
from Vintageous.ex.parser.scanner_command_write import TokenCommandWrite
from Vintageous.ex.parser.state import EOF
from Vintageous.ex.parser.tokens import TokenComma
from Vintageous.ex.parser.tokens import TokenDigits
from Vintageous.ex.parser.tokens import TokenDollar
from Vintageous.ex.parser.tokens import TokenDot
from Vintageous.ex.parser.tokens import TokenEof
from Vintageous.ex.parser.tokens import TokenMark
from Vintageous.ex.parser.tokens import TokenOffset
from Vintageous.ex.parser.tokens import TokenPercent
from Vintageous.ex.parser.tokens import TokenSearchBackward
from Vintageous.ex.parser.tokens import TokenSearchForward
from Vintageous.ex.parser.tokens import TokenSemicolon


class ScannerTests(unittest.TestCase):
Expand Down
6 changes: 3 additions & 3 deletions tests/ex/parsers/new/test_scanner_state.py
@@ -1,8 +1,8 @@
import unittest

from Vintageous.ex.parsers.new.state import State
from Vintageous.ex.parsers.new.state import EOF
from Vintageous.ex.parsers.new.tokens import TOKEN_UNKNOWN
from Vintageous.ex.parser.state import State
from Vintageous.ex.parser.state import EOF
from Vintageous.ex.parser.tokens import TOKEN_UNKNOWN


class ScannerTests(unittest.TestCase):
Expand Down

0 comments on commit 99fbede

Please sign in to comment.