タグ

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

タグの絞り込みを解除

VisualStudioCodeに関するgreenbizのブックマーク (3)

  • Go with Visual Studio Code

    Version 1.90 is now available! Read about the new features and fixes from May. Go in Visual Studio Code Using the Go extension for Visual Studio Code, you get features like IntelliSense, code navigation, symbol search, testing, debugging, and many more that will help you in Go development. You can install the Go extension from the VS Code Marketplace. Watch "Getting started with VS Code Go" for an

    Go with Visual Studio Code
  • Visual Studio Code 重複行を削除する - Qiita

    目的 重複したテキストデータを削除したい。 手順 1. 行をソートする Command + A でソートする行を範囲選択する Command + Shift + P >Sort Lines Ascending 昇順または降順に並び替える 2. 正規表現で重複行を削除する 検索窓を表示する: Command + F 正規表現を使用する: Command + option + R 検索ボックスへ入力: (^.*$)(\n(^\1$)){1,} 置換ボックスへ入力: $1 すべて置換: Command + option + Enter キャプチャ動画 補足 (^.*$)\n(^\1$)、 $1 の正規表現の補足です。 まず、正規表現では括弧で囲われた部分は変数に代入されます。 括弧の数に応じて $1,$2,$3... と代入されていきます。 \1 は前方で記憶した文字列をマッチしています。 改行

    Visual Studio Code 重複行を削除する - Qiita
  • VSCodeでShift_JISの自動判定エンコードでの注意 - Qiita

    これデフォルトだとfalseになっていますがtrueにすると便利ですよね Grep検索で注意 しかし Grep検索(Ctrl + Shift + F)を行うときはfiles.encodingのエンコード設定を使います。 自動エンコードは適用されません。 つまり特にユーザーによる指定がない場合は // ファイルの読み取り/書き込みで使用する既定の文字セット エンコーディング。言語ごとに構成することも可能です。 "files.encoding": "utf8" こちらが適用されるわけです。 したがってUTF-8ファイル以外を扱うときにGrep検索では注意が必要です。 VSCodeでは異なるエンコード間での自動エンコードによるGrep検索はできないようです。 エンコードが予めわかっているなら個別に指定するのが無難です。 Shift_JISのファイルでの注意 "files.autoGuessEnc

    VSCodeでShift_JISの自動判定エンコードでの注意 - Qiita
    greenbiz
    greenbiz 2020/07/04
    “files.autoGuessEncoding”[encoding]
  • 1