From a62114c91f2070c8c8453d117f3d81dc113e41ff Mon Sep 17 00:00:00 2001 From: Biswakalyan Bhuyan Date: Mon, 25 Mar 2024 16:43:09 +0530 Subject: dotfile update --- zsh/oh-my-zsh/plugins/pylint/README.md | 16 ------------- zsh/oh-my-zsh/plugins/pylint/_pylint | 31 -------------------------- zsh/oh-my-zsh/plugins/pylint/pylint.plugin.zsh | 1 - 3 files changed, 48 deletions(-) delete mode 100644 zsh/oh-my-zsh/plugins/pylint/README.md delete mode 100644 zsh/oh-my-zsh/plugins/pylint/_pylint delete mode 100644 zsh/oh-my-zsh/plugins/pylint/pylint.plugin.zsh (limited to 'zsh/oh-my-zsh/plugins/pylint') diff --git a/zsh/oh-my-zsh/plugins/pylint/README.md b/zsh/oh-my-zsh/plugins/pylint/README.md deleted file mode 100644 index 31710d8..0000000 --- a/zsh/oh-my-zsh/plugins/pylint/README.md +++ /dev/null @@ -1,16 +0,0 @@ -# pylint - -This plugin adds aliases and autocompletion for [Pylint](https://www.pylint.org/), -the Python code style checking tool. - -To use it, add `pylint` to the plugins array in your zshrc file: - -```zsh -plugins=(... pylint) -``` - -## Aliases - -| Alias | Command | Description | -| -------------| -------------------- | -------------------------------------------------------------------------------------------------------------------------| -| pylint-quick | `pylint --reports=n` | Displays a set of reports each one focusing on a particular aspect of the project, default set `no` for multiple reports | diff --git a/zsh/oh-my-zsh/plugins/pylint/_pylint b/zsh/oh-my-zsh/plugins/pylint/_pylint deleted file mode 100644 index e466d05..0000000 --- a/zsh/oh-my-zsh/plugins/pylint/_pylint +++ /dev/null @@ -1,31 +0,0 @@ -#compdef pylint -# -# this is zsh completion function file. -# generated by genzshcomp(ver: 0.5.1) -# - -typeset -A opt_args -local context state line - -_arguments -s -S \ - "--help[show this help message and exit]:" \ - "-h[show this help message and exit]:" \ - "--version[show program's version number and exit]:" \ - "--long-help[more verbose help.]" \ - "--rcfile[Specify a configuration file.]:::_files" \ - "--errors-only[In error mode, checkers without error messages are disabled and for others, only the ERROR messages are displayed, and no reports are done by default]" \ - "-E[In error mode, checkers without error messages are disabled and for others, only the ERROR messages are displayed, and no reports are done by default]" \ - "--ignore[Add files or directories to the blacklist. They should be base names, not paths. \[current: CVS\]]::[,...]:_files" \ - "--help-msg[Display a help message for the given message id and exit. The value may be a comma separated list of message ids.]:::_files" \ - "--generate-rcfile[Generate a sample configuration file according to the current configuration. You can put other options before this one to get them in the generated configuration.]" \ - "--enable[Enable the message, report, category or checker with the given id(s). You can either give multiple identifier separated by comma (,) or put this option multiple time.]:::_files" \ - "-e[Enable the message, report, category or checker with the given id(s). You can either give multiple identifier separated by comma (,) or put this option multiple time.]:::_files" \ - "--disable[Disable the message, report, category or checker with the given id(s). You can either give multiple identifier separated by comma (,) or put this option multiple time (only on the command line, not in the configuration file where it should appear only once).]:::_files" \ - "-d[Disable the message, report, category or checker with the given id(s). You can either give multiple identifier separated by comma (,) or put this option multiple time (only on the command line, not in the configuration file where it should appear only once).]:::_files" \ - "--output-format[Set the output format. Available formats are text, parseable, colorized, msvs (visual studio) and html \[current: text\]]:::_files" \ - "-f[Set the output format. Available formats are text, parseable, colorized, msvs (visual studio) and html \[current: text\]]:::_files" \ - "--include-ids[Include message's id in output \[current: no\]]:::_files" \ - "-i[Include message's id in output \[current: no\]]:::_files" \ - "--reports[Tells whether to display a full report or only the messages \[current: yes\]]:::_files" \ - "-r[Tells whether to display a full report or only the messages \[current: yes\]]:::_files" \ - "*::args:_files" diff --git a/zsh/oh-my-zsh/plugins/pylint/pylint.plugin.zsh b/zsh/oh-my-zsh/plugins/pylint/pylint.plugin.zsh deleted file mode 100644 index 14cea5b..0000000 --- a/zsh/oh-my-zsh/plugins/pylint/pylint.plugin.zsh +++ /dev/null @@ -1 +0,0 @@ -alias pylint-quick='pylint --reports=n' -- cgit v1.2.3-59-g8ed1b