Skip to content

Instantly share code, notes, and snippets.

@andersonfraga
Last active July 2, 2020 19:03
Show Gist options
  • Save andersonfraga/4d68ae99295115aa0b230805b444982d to your computer and use it in GitHub Desktop.
Save andersonfraga/4d68ae99295115aa0b230805b444982d to your computer and use it in GitHub Desktop.
import json
import sublime
import sublime_plugin
import subprocess
class ApplyPhpcsfixerCommand(sublime_plugin.WindowCommand):
def run(self):
file_name = self.window.active_view().file_name()
result = self.run_command(["php-cs-fixer", "fix", file_name,
"--rules=" + json.dumps(self.rules),
"--allow-risky=yes", "--cache-file=/tmp/.php-cs-cache"])
# other_result = self.run_command(["perl","-p","-i","-e","s/ /\t/g", file_name])
print(result)
# print(other_result)
sublime.status_message("php-cs-fixer applied")
# self.window.active_view().run_command('unexpand_tabs')
def run_command(self, command):
git_proc = subprocess.Popen(command,
stdout=subprocess.PIPE, stderr=subprocess.STDOUT,
stdin=subprocess.PIPE, shell=False, universal_newlines=False)
o, e = git_proc.communicate()
return o.decode('ascii').strip().strip('"'), e
def is_enabled(self):
return True
rules = {
'align_multiline_comment' : True,
'array_syntax' : {'syntax' : 'short'},
'backtick_to_shell_exec' : True,
'blank_line_after_opening_tag' : True,
'blank_line_after_namespace' : True,
'blank_line_before_statement' : True,
'braces' : {'allow_single_line_closure': True, 'position_after_functions_and_oop_constructs': 'same'},
'class_definition' : True,
'class_attributes_separation' : {'elements': ['method']},
# 'class_keyword_remove' : True, # nop
'binary_operator_spaces' : {'default': 'align_single_space_minimal'},
'combine_consecutive_issets' : True,
'combine_consecutive_unsets' : True,
'comment_to_phpdoc' : True,
'constant_case': {'case': 'lower'},
'declare_equal_normalize' : {'space': 'single'},
'date_time_immutable' : True,
'dir_constant' : True,
'elseif' : True,
'escape_implicit_backslashes' : True,
'explicit_indirect_variable' : True,
'fully_qualified_strict_types' : True,
'function_to_constant' : True,
'function_typehint_space' : True,
# # 'global_namespace_import' : True, # nop
# 'heredoc_indentation' : True,
'heredoc_to_nowdoc' : True,
'is_null' : True,
'implode_call' : True,
'list_syntax' : {'syntax': 'short'},
'logical_operators' : True,
'lowercase_static_reference' : True,
'mb_str_functions' : True,
'method_chaining_indentation' : True,
'native_function_casing' : True,
'native_function_invocation' : True,
'native_constant_invocation' : True,
'normalize_index_brace' : True,
'no_alias_functions' : True,
'no_empty_statement' : True,
'no_extra_blank_lines' : True,
'no_leading_namespace_whitespace' : True,
# 'no_blank_lines_before_namespace' : True,
'non_printable_character' : {'use_escape_sequences_in_strings': True},
'no_spaces_around_offset' : True,
'no_spaces_after_function_name' : True,
'no_superfluous_elseif' : True,
'no_useless_else' : True,
'no_unused_imports' : True,
'no_unneeded_final_method' : True,
'no_unneeded_curly_braces' : True,
'no_unneeded_control_parentheses' : True,
'no_unreachable_default_argument_value' : True,
'ordered_class_elements' : True,
'ordered_imports' : True,
'ordered_interfaces' : True,
'phpdoc_align' : True,
'phpdoc_add_missing_param_annotation' : {'only_untyped': False},
'phpdoc_indent' : True,
'phpdoc_line_span' : True,
'phpdoc_scalar' : True,
'phpdoc_single_line_var_spacing' : True,
'phpdoc_to_param_type' : True,
'phpdoc_to_return_type' : True,
'phpdoc_trim' : True,
'phpdoc_trim_consecutive_blank_line_separation' : True,
'phpdoc_types_order' : True,
'phpdoc_var_without_name' : True,
'php_unit_construct' : True,
'php_unit_dedicate_assert' : {'target': 'newest'},
'php_unit_fqcn_annotation' : True,
'psr4' : True,
'random_api_migration' : True,
'return_assignment' : True,
'return_type_declaration' : True,
'self_accessor' : True,
'self_static_accessor' : True,
'single_quote' : True,
'single_class_element_per_statement' : True,
'short_scalar_cast' : True,
'simplified_null_return' : True,
'single_blank_line_before_namespace' : True,
'single_import_per_statement' : True,
'single_line_after_imports' : True,
'single_line_comment_style' : True,
'single_line_throw' : True,
'standardize_not_equals' : True,
'strict_param' : True,
'switch_case_space' : True,
'ternary_to_null_coalescing' : True,
'void_return' : True,
'visibility_required' : {'elements': ['property', 'method', 'const']},
}
import os
import sublime
import sublime_plugin
class CopyBasenameFileCommand(sublime_plugin.TextCommand):
def run(self, edit):
file_name = os.path.basename(self.view.file_name())
index_of_dot = file_name.index('.')
basename = file_name[:index_of_dot]
sublime.set_clipboard(basename)
sublime.status_message("Copied %s" % basename)
def is_enabled(self):
return True
import os
import sublime
import sublime_plugin
import subprocess
class CopyBasenameFileGithubCommand(sublime_plugin.TextCommand):
def run(self, edit):
for path in sublime.active_window().folders():
project_path = os.path.normpath(path)
file_path = os.path.normpath(sublime.active_window().active_view().file_name())
relative_path = file_path
if file_path.startswith(project_path):
relative_path = file_path.replace(project_path, '')
break
context = relative_path
(row,col) = self.view.rowcol(self.view.sel()[0].begin())
project = self.view.settings().get("github_project_path", "")
if project == False:
git_url, e = self.run_git_command(project_path, ["config", "--get", "remote.origin.url"])
project = "https://" + git_url.replace("git@", "").replace(".git", "").replace(":", "/")
if project:
commit_ref = "master"
output_proc, e = self.run_git_command(project_path, ["log", "-1", "--pretty=\"%H\""])
if len(output_proc):
commit_ref = output_proc
project = project.rstrip("/") + "/blob/" + commit_ref + "/"
context = project + context.lstrip("/") + "#L" + str(row+1)
sublime.set_clipboard(context)
sublime.status_message("Copied %s" % context)
def run_git_command(self, project_path, command):
git_proc = subprocess.Popen(["git", "-C", project_path] + command,
stdout=subprocess.PIPE, stderr=subprocess.STDOUT,
stdin=subprocess.PIPE, shell=False, universal_newlines=False)
o, e = git_proc.communicate()
return o.decode('ascii').strip().strip('"'), e
def is_enabled(self):
return True
[
{ "keys": ["ctrl+shift+l"], "command": "copy_basename_file" },
{ "keys": ["ctrl+shift+g"], "command": "copy_basename_file_github" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment