Module: Textbringer

Defined in:
lib/textbringer/face.rb,
lib/textbringer/mode.rb,
lib/textbringer/ring.rb,
lib/textbringer/color.rb,
lib/textbringer/utils.rb,
lib/textbringer/buffer.rb,
lib/textbringer/config.rb,
lib/textbringer/errors.rb,
lib/textbringer/keymap.rb,
lib/textbringer/plugin.rb,
lib/textbringer/window.rb,
lib/textbringer/version.rb,
lib/textbringer/commands.rb,
lib/textbringer/controller.rb,
lib/textbringer/faces/basic.rb,
lib/textbringer/input_method.rb,
lib/textbringer/modes/c_mode.rb,
lib/textbringer/commands/fill.rb,
lib/textbringer/commands/help.rb,
lib/textbringer/commands/misc.rb,
lib/textbringer/commands/ctags.rb,
lib/textbringer/commands/files.rb,
lib/textbringer/default_output.rb,
lib/textbringer/commands/server.rb,
lib/textbringer/modes/help_mode.rb,
lib/textbringer/modes/ruby_mode.rb,
lib/textbringer/commands/buffers.rb,
lib/textbringer/commands/dabbrev.rb,
lib/textbringer/commands/isearch.rb,
lib/textbringer/commands/replace.rb,
lib/textbringer/commands/windows.rb,
lib/textbringer/commands/register.rb,
lib/textbringer/faces/programming.rb,
lib/textbringer/commands/clipboard.rb,
lib/textbringer/modes/backtrace_mode.rb,
lib/textbringer/commands/input_method.rb,
lib/textbringer/modes/buffer_list_mode.rb,
lib/textbringer/modes/fundamental_mode.rb,
lib/textbringer/modes/programming_mode.rb,
lib/textbringer/commands/keyboard_macro.rb,
lib/textbringer/modes/completion_list_mode.rb,
lib/textbringer/input_methods/t_code_input_method.rb,
lib/textbringer/input_methods/hiragana_input_method.rb,
lib/textbringer/input_methods/t_code_input_method/tables.rb

Defined Under Namespace

Modules: Color, Commands, DabbrevExtension, FillExtension, Plugin, Utils Classes: BacktraceMode, Buffer, BufferListMode, CMode, Command, CompletionListMode, CompositeAction, Controller, DefaultOutput, DeleteAction, EchoArea, EditorError, Face, FundamentalMode, HelpMode, HiraganaInputMethod, InputMethod, InsertAction, Keymap, Mark, Mode, ProgrammingMode, Quit, ReadOnlyError, Ring, RubyMode, SearchError, Server, TCodeInputMethod, UndoableAction, Window

Constant Summary collapse

KILL_RING =
Ring.new
CONFIG =
{
  east_asian_ambiguous_width: 1,
  default_file_encoding: Encoding::UTF_8,
  default_file_format: :unix,
  tab_width: 8,
  indent_tabs_mode: false,
  case_fold_search: true,
  buffer_dump_dir: File.expand_path("~/.textbringer/buffer_dump"),
  mark_ring_max: 16,
  global_mark_ring_max: 16,
  window_min_height: 4,
  syntax_highlight: true,
  highlight_buffer_size_limit: 1024,
  shell_file_name: ENV["SHELL"],
  shell_command_switch: "-c",
  grep_command: "grep -nH -e",
  fill_column: 70,
  read_file_name_completion_ignore_case: RUBY_PLATFORM.match?(/darwin/),
  default_input_method: "t_code"
}
VERSION =
"1.3.0"
TOP_LEVEL_TAG =
Object.new
RECURSIVE_EDIT_TAG =
Object.new