サイトマップ 連絡先 最初に戻る 戻る 次へ進む
$Date: 2018-07-07 06:49:13 +0900 (2018/07/07 (土)) $
$Revision: 1347 $

CopyWithLineNumbers (行番号付きでコピーするプラグイン)

ソースコード

https://github.com/m-tmatma/CopyWithLineNumbers で公開しています。

バイナリ

https://github.com/m-tmatma/CopyWithLineNumbers/releases からダウンロードできます。

Marcket Place での公開

https://marketplace.visualstudio.com/items?itemName=tmatma.CopyWithLineNumbers-18783 で入手可能です。

対応 Visual Studio

インストール

マニュアル

使い方

  1. ソリューションを開きます
  2. 何かドキュメントを開きます
  3. 範囲選択します
  4. ツールメニューから "Copy With Line Numbers" を選ぶ か 右クリックメニューから "Copy With Line Numbers" を選びます
  5. なんかのエディタで貼り付けを行います

サンプル出力

51:         /// <summary>
52:         /// Initializes a new instance of the <see cref="VSPackage"/> class.
53:         /// </summary>
54:         public VSPackage()
55:         {
56:             // Inside this method you can place any initialization code that does not require
57:             // any Visual Studio service because at this point the package object is created but
58:             // not sited yet inside Visual Studio environment. The place to do all the other
59:             // initialization is the Initialize method.
60:         }
61: