タグ

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

  • 関連タグはありません

タグの絞り込みを解除

emacsとdoxygenに関するelwoodbluesのブックマーク (3)

  • program tips

    toyman.jp プログラマーチップス エディットボックスのにフォーカスを与える HWND edit = GetDlgItem( hWnd, IDC_EDIT1 ); SetFocus( edit ); ええい、めんどくせぇ! ここまでやってもコピペで漢字が入ってしまう。 チェックは必要だ。。。 エディットボックスの文字数制限 HWND edit = GetDlgItem( hWnd, IDC_EDIT1 ); SetWindowText( edit, pName ); SendMessage(edit, EM_SETLIMITTEXT,7,0); IME の無効化 #include #pragma comment(lib, "imm32.lib") OnInitDialog() で、 ImmAssociateContext(hWnd, NULL)

  • Doxymacs = Doxygen + Emacs

    Doxymacs is Doxygen + {X}Emacs. The purpose of the doxymacs project is to create a LISP package that will make using Doxygen from within {X}Emacs easier. Version 1.8.0, released 2007-06-10, has the following features: ability to look up documentation for symbols from {X}Emacs in the browser of your choice. easily insert Doxygen style comments into source. optionally use an "external" (i.e. written

  • いろいろ memo - emacs

    ● Effective Emacs [emacs] Effective Emacs reddit経由で. 長年使い込んでる人には当たり前かもしれないちょっとしたテクニックが紹介されてました. 個人的に「おっ」と思ったのが query-replace-regexp を xr とかにエイリアスするというもの. .emacs を見直してみたら,自分はこんなんしてた. (defalias 'rs 'replace-string) (defalias 'rr 'replace-regexp) M-x rs も M-x rr も左手だけで打てるから気に入ってます. たまに query-replace-regexp-eval を使うのだけど,repace-regexp-eval が無いのが不思議. Emacs 22 では *-eval じゃなくても関数呼べるみたいだけどな. date:

  • 1