各种编辑器的加强功能

浏览器插件

Google翻译(中英文)

Markdown Preview Plus

Github Tree

点击view raw下载,然后安装

划词翻译

qiniu upload files

七牛在线存图

Vim

reference

vim ~/.vimrc

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

VSCode

设置

Crtl+,->用户设置

{
  "editor.fontSize": 16,
    // 要使用的代理设置。如果尚未设置,则将从 http_proxy 和 https_proxy 环境变量获取
  "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", 
}

插件

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

编译C++

Windows下VSCode编译调试c/c++

Sublime3

激活

3126激活码

—– 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激活码

—– 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 —— 

设置

Prefences->Settings

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

    "translate_tabs_to_spaces": false, //

在文件夹右键和空格右键处添加用Sublime打开

Win + R -> regedit打开注册表

在资源管理器的当前目录打开

定位到如下:HKEY_CLASSES_ROOT\Directory\background\shell

右键点击shell新建->,命名为Sublime

右键点击Sublime新建->,命名为command

点击command,右侧会出现默认的一条数据,双击名称一栏的(默认),修改数值数据为"C:\Program Files\Sublime Text 3\sublime_text.exe" "-a" "%v"

点击文件夹用Sublime打开

定位到如下:HKEY_CLASSES_ROOT\Directory\shell

重复以上内容。

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,
}

附:MarkdownEditing GitHub

MarkdownPreview

test.md

pylint

Sublime配置pylinter实现查错,格式化,代码自动规范,对错误显示图标(python语法检查)

{
    // 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环境

blog

ConvertToUTF8

SublimeREPL

SublimeCodeIntel

GoSublime & GoImports

Anaconda

自动格式化代码ctrl+alt+R

{
    "auto_formatting": true
}

Atom

Markdown配置

blog

字体

Source Code Pro

Markdown相关

Flow语法

序列图和流程图

FastStone Capture 激活

FastStone Capture 注册码 序列号:
name/用户名:TEAM JiOO
key/注册码:CPCWXRVCZW30HMKE8KQQUXW
USER NAME:TEAM_BRAiGHTLiNG_2007
CODE:XPNMF-ISDYF-LCSED-BPATU
RPTME-IMDHD-MIEPX-VLXAW
企业版序列号:
name:bluman
serial/序列号/注册码:VPISCJULXUFGDDXYAUYF
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值