Enhanced functions of various editors

Keywords: Python sublime shell github

Browser plug in

Google translation (Chinese and English)

Markdown Preview Plus

Github Tree

Click view raw to download and install

Word translation

qiniu upload files

Seven cattle online map

Vim

reference

vim ~/.vimrc

syntax on
set number
set tabstop=4
set expandtab
set hlsearch

VSCode

Set up

Crtl +, - > user settings

{
  "editor.fontSize": 16,
    // Proxy settings to use. If it has not been set, it will be obtained from the HTTP proxy and HTTPS proxy environment variables
  "http.proxy": "http://proxyhk.zte.com.cn:80",
  "files.autoSave": "afterDelay",
  "workbench.colorTheme": "Solarized Light",
  "git.enableSmartCommit": true,
  "git.confirmSync": false,
  "markdown.preview.fontSize": 16,
  "workbench.iconTheme": "vscode-icons",
  "window.menuBarVisibility": "default",
  "explorer.confirmDelete": false,
  "python.workspaceSymbols.tagFilePath": "${workspaceRoot}/tags",
  "window.zoomLevel": 0,
  "vsicons.dontShowNewVersionMessage": true,
  "workbench.startupEditor": "newUntitledFile",
  "files.autoGuessEncoding": true,
  "python.linting.pylintArgs": [
    "--max-line-length=120",
    "--disable=E712,E1101,C0121,C0301,F405,E711,C0103,E0102,C0111,W0621"
  ],
  "files.encoding": "gbk", 
}

Plug-in unit

  • C/C++
  • Code Outline
  • Docker
  • Go
  • Markdown All in One
  • Markdown PDF
  • Markdown Shortcuts
  • Markdown+ Math
  • Python
  • SVN
  • vscode-icons
  • vscode-pandoc

Compile C++

VSCode compiling and debugging c/c under Windows++

Sublime3

activation

3126 activation code

—– BEGIN LICENSE —–
Michael Barnes
Single User License
EA7E-821385
8A353C41 872A0D5C DF9B2950 AFF6F667
C458EA6D 8EA3C286 98D1D650 131A97AB
AA919AEC EF20E143 B361B1E7 4C8B7F04
B085E65E 2F5F5360 8489D422 FB8FC1AA
93F6323C FD7F7544 3F39C318 D95E6480
FCCC7561 8A4A1741 68FA4223 ADCEDE07
200C25BE DBBC4855 C4CFB774 C5EC138C
0FEC1CEF D9DCECEC D3A5DAD1 01316C36
- END LICENSE -

3143 activation code

—– BEGIN LICENSE —–  
TwitterInc  
200 User License  
EA7E-890007  
1D77F72E 390CDD93 4DCBA022 FAF60790  
61AA12C0 A37081C5 D0316412 4584D136  
94D7F7D4 95BC8C1C 527DA828 560BB037  
D1EDDD8C AE7B379F 50C9D69D B35179EF  
2FE898C4 8E4277A8 555CE714 E1FB0E43  
D5D52613 C3D12E98 BC49967F 7652EED2  
9D2D2E61 67610860 6D338B72 5CF95C69  
E36B85CC 84991F19 7575D828 470A92AB  
- END LICENSE - 

Set up

Prefences->Settings

    "font_size": 14,
    "default_encoding":"UTF-8", //unix mode
    "default_line_ending":"unix",

    "translate_tabs_to_spaces": false, //

Add open with Sublime at the right key of folder and space

Win + R - > regedit open registry

Open in the current directory of Explorer

Navigate to the following: HKEY? Classes? Root \ directory \ background \ shell

Right click the shell, create a new - > item, and name it Sublime

Right click Sublime, create - > item, and name it command

Click command, and a default data will appear on the right. Double click (default) in the name column, and modify the value data to "C: \ program files \ sublime text 3 \ sublime_text. Exe" - a ""% v "

Click the folder and open it with Sublime

Navigate to the following: HKEY? Classes? Root \ directory \ shell

Repeat the above.

Markdown Editing

Reference

Ctrl+Shift+P->Prefences: MarkdownEditing Settings User

{
    "font_size": 13,
    "ignored_packages":
    [
        "Vintage"
    ],

    /*
        Enable or not mathjax support.
    */
    "enable_mathjax": true,

    /*
        Enable or not highlight.js support for syntax highlighting.
    */
    "enable_highlight": true,

    //"color_scheme": "Packages/MarkdownEditing/MarkdownEditor-Dark.tmTheme",
    "color_scheme": "Packages/MarkdownEditing/MarkdownEditor-Yellow.tmTheme",
    //"color_scheme": "Packages/MarkdownEditing/MarkdownEditor.tmTheme",

    // Layout
    "draw_centered": false,
    "wrap_width": 0,

    // Line
    "line_numbers": true,
    "highlight_line": true,
}

Attachment: MarkdownEditing GitHub

MarkdownPreview

test.md

pylint

Sublime configures pylinter to realize error checking, formatting, automatic code specification, error display icon (python syntax check)

{
    // When versbose is 'true', various messages will be written to the console.
    // values: true or false
    "verbose": false,
    // The full path to the Python executable you want to
    // run Pylint with or simply use 'python'.
    "python_bin": "python",
    // The following paths will be added Pylint's Python path
    "python_path": [
        "c:/python27/python.exe"
                   ],
    // Optionally set the working directory
    "working_dir": null,
    // Full path to the lint.py module in the pylint package
    "pylint_path": "c:/python27/Lib/site-packages/pylint/lint.py",
    // Optional full path to a Pylint configuration file
    "pylint_rc": null,
    // Set to true to automtically run Pylint on save
    "run_on_save": true,
    // Set to true to use graphical error icons
    "use_icons": true,
    "disable_outline": false,
    // Status messages stay as long as cursor is on an error line
    "message_stay": true,
    // Ignore Pylint error types. Possible values:
    // "R" : Refactor for a "good practice" metric violation
    // "C" : Convention for coding standard violation
    // "W" : Warning for stylistic problems, or minor programming issues
    // "E" : Error for important programming issues (i.e. most probably bug)
    // "F" : Fatal for errors which prevented further processing
    "ignore": [],
    // a list of strings of individual errors to disable, ex: ["C0301"]
    "disable": [],
    "plugins": []
}

python environment

blog

ConvertToUTF8

SublimeREPL

SublimeCodeIntel

GoSublime & GoImports

Anaconda

Auto format code ctrl+alt+R

{
    "auto_formatting": true
}

Atom

Markdown configuration

blog

Typeface

Source Code Pro

Markdown related

Flow syntax

Sequence diagram and flow chart

FastStone Capture activation

FastStone Capture registration code serial number:
Name / user name: TEAM JiOO
 key / registration code: CPCWXRVCZW30HMKE8KQQUXW
USER NAME:TEAM_BRAiGHTLiNG_2007
CODE:XPNMF-ISDYF-LCSED-BPATU
RPTME-IMDHD-MIEPX-VLXAW
 Enterprise serial number:
name: bluman
 serial / serial No. / registration code: vpischulxufgddyyayf

Posted by CrazeD on Sat, 15 Feb 2020 11:16:09 -0800