ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

fluent-logger

by airtoxin ST3

fluentd logging tool for sublime text editor

Details

Installs

  • Total 235
  • Win 118
  • Mac 91
  • Linux 26
Jan 30 Jan 29 Jan 28 Jan 27 Jan 26 Jan 25 Jan 24 Jan 23 Jan 22 Jan 21 Jan 20 Jan 19 Jan 18 Jan 17 Jan 16 Jan 15 Jan 14 Jan 13 Jan 12 Jan 11 Jan 10 Jan 9 Jan 8 Jan 7 Jan 6 Jan 5 Jan 4 Jan 3 Jan 2 Jan 1 Dec 31 Dec 30 Dec 29 Dec 28 Dec 27 Dec 26 Dec 25 Dec 24 Dec 23 Dec 22 Dec 21 Dec 20 Dec 19 Dec 18 Dec 17
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

fluent-logger-sublimetext ST3

fluentd logging tool for sublime text editor

Install

You can install from Package Control.

Package Control: Install Package > Select fluent-logger

Settings

fieldname default description
tagprefix “sublime” tag prefix of fluentd
host “localhost” host of fluentd
port 24224 port of fluentd

Records

Those fields are shared with all records

fieldname description example data
version the version number of editor 3083
platform the platform, which may be “osx”, “linux” or “windows” osx
arch the CPU architecture, which may be “x32” or “x64” x64
file_name the full name file the file associated with the buffer, or None if it doesn't exist on disk example.py
size number of character in the file 4349
viewport_extent the width and height of the viewport [768.0, 769.0]
layout_extent the width and height of the layout [1092.0, 3402.0]
line_height the light height used in the layout 27.0
em_width the typical character width used in the layout 12.0
change_count the current change count 34
encoding the encoding currently associated with the file UTF-8
line_endings the line endings used by the current file Unix
overwrite_status the overwrite status, which the user normally toggles via the insert key false
syntax the syntax file name Packages/Python/Python.tmLanguage

sublime.on_new

Called when a new buffer is created.

sublime.on_clone

Called when a view is cloned from an existing one.

sublime.on_load

Called when the file is finished loading.

sublime.on_pre_close

Called when a view is about to be closed.

sublime.on_close

Called when a view is closed.

sublime.on_pre_save

Called just before a view is saved.

sublime.on_post_save

Called after a view has been saved.

sublime.on_modified

Called after changes have been made to a view.

sublime.on_selection_modified

Called after the selection has been modified in a view.

sublime.on_activated

Called when a view gains input focus.

sublime.on_deactivated

Called when a view loses input focus.

fieldname description example data
active_time the seconds of time, which the view actived 2.293574810028076

sublime.on_text_command

Called when a text command is issued.

fieldname description example data
command_name the name of running command open_dir
args the arguments of running command {“dir”:“$packages”}

sublime.on_window_command

Called when a window command is issued.

fieldname description example data
command_name the name of running command open_dir
args the arguments of running command {“dir”:“$packages”}

sublime.post_text_command

Called after a text command has been executed.

fieldname description example data
command_name the name of running command open_dir
args the arguments of running command {“dir”:“$packages”}

sublime.post_window_command

Called after a window command has been executed.

fieldname description example data
command_name the name of running command open_dir
args the arguments of running command {“dir”:“$packages”}

sublime.on_query_context

Called when determining to trigger a key binding with the given context key.

fieldname description example data
key the name of context key snake_running
operator the name of operator name, which may be “OP_EQUAL”, “OP_NOT_EQUAL”, “OP_REGEX_MATCH”, “OP_NOT_REGEX_MATCH”, “OP_REGEX_CONTAINS” or “OP_NOT_REGEX_CONTAINS” OP_EQUAL
operand the operand true
match_all it should be used if the context relates to the selections: does every selection have to match false

sublime.on_query_completions

Called when the completion list is requested.

fieldname description example data
prefix the text entered so far dat
locations array of points in view where the completion should be inserted [4228]

License

MIT