File: command-t.rb

package info (click to toggle)
vim-command-t 5.0.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 760 kB
  • sloc: ruby: 3,433; ansic: 1,177; makefile: 37; xml: 11
file content (24 lines) | stat: -rw-r--r-- 807 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Copyright 2014-present Greg Hurrell. All rights reserved.
# Licensed under the terms of the BSD 2-clause license.

module CommandT
  begin
    require 'command-t/metadata'
  rescue LoadError
    require 'command-t/metadata/fallback'
  end

  autoload :Controller, 'command-t/controller'
  autoload :Finder, 'command-t/finder'
  autoload :MRU, 'command-t/mru'
  autoload :MatchWindow, 'command-t/match_window'
  autoload :PathUtilities, 'command-t/path_utilities'
  autoload :ProgressReporter, 'command-t/progress_reporter'
  autoload :Prompt, 'command-t/prompt'
  autoload :SCMUtilities, 'command-t/scm_utilities'
  autoload :Scanner, 'command-t/scanner'
  autoload :Settings, 'command-t/settings'
  autoload :Stub, 'command-t/stub'
  autoload :Util, 'command-t/util'
  autoload :VIM, 'command-t/vim'
end