タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

Pythonとpluginとprogrammingに関するraimon49のブックマーク (2)

  • コード補完プラグイン

    ####用語 Clang LLVM をバックエンドとした C++ のコンパイラ Clang には構文解析器が付属しているのでそれを利用しているプラグインはいくつか存在する libclang Clang に付属している構文解析を行う動的ライブラリ(e.g. libclang.dll や libclang.so) +python Vim で if_python を使用する為の組み込み機能 Vim をビルドする時に +python を指定する必要がある ####clang_complete 概要 libclang を利用したコード補完 バックエンド libclang(動的ライブラリ) 動作環境 libclang(動的ライブラリ) +pythonVim の組み込み機能) 依存しているプラグイン なし 設定 " コマンドオプション let g:clang_user_options = '-std=

    コード補完プラグイン
  • EditorConfig

    What is EditorConfig? EditorConfig helps maintain consistent coding styles for multiple developers working on the same project across various editors and IDEs. The EditorConfig project consists of a file format for defining coding styles and a collection of text editor plugins that enable editors to read the file format and adhere to defined styles. EditorConfig files are easily readable and they

    raimon49
    raimon49 2014/01/20
    .editorconfigでIDEやエディタのプラグラミングスタイルの標準化。jQueryやZshといった名立たるOSSプロジェクトで採用されてる。trim_trailing_whitespaceの設定があるのが地味に良い。
  • 1