質問は十分簡単なので、これ以上説明は必要ないようです。
Ubuntu 13.04を実行していると付け加えます。
どんな助けでも歓迎します。
答え1
通常どおりMCを実行してください。メニューオプションの一番下の行のすぐ上にあるコマンドラインに、次のように入力します。
select-editor
これにより、インストールされているすべてのエディタのリストを含むメニューが開きます。これは現在、すべてのLinuxコンピュータで動作します。
答え2
Midnight Commanderで、オプションメニュー/構成...コマンド/内部編集を有効にするチェックボックスに移動して選択を解除します。 (「設定の自動保存」オプションがオフの場合は、「設定の保存」コマンドを実行することを忘れないでください。)
次に、EDITOR
環境変数をSublimeに設定します。シェルのリソースファイルに次のいずれかを追加することをお勧めします。
使用されているすべてのプログラムのグローバル設定
EDITOR
(推奨されていません):EDITOR=sublime export EDITOR
特定のMidnight Commanderセッションにのみ適用される一時設定:
alias mc='EDITOR=sublime mc'
ビューアでも同様です。 「内部ビューを使用」オプションの選択を解除してVIEWER
環境変数を設定します。
答え3
テーマが古いにもかかわらず、Midnight Commanderはvi
まだ私のTumbleweedでデフォルトで使用されています。
私はRaspberry(DebianベースのBusterなど)の設定を確認しました。 「選択エディタ」は、mcを初めて実行するときに使用できます。つまり、$HOME/.selected_editor
次のように作成できます。
touch $HOME/.selected_editor
シンボリックリンクもあります
/etc/alternatives/@editor pointing to /usr/bin/nano
このシンボリックリンクを作成し、さらに3つを保存してください実行可能ファイルスクリプトファイルは次の場所にあります/usr/bin
。
スマートポケットベル
#!/bin/sh
# Prevent recursive loops, where these values are set to this script
p="$(which sensible-pager)"
[ "$(which $PAGER || true)" = "$p" ] && PAGER=
${PAGER:-pager} "$@"
ret="$?"
if [ "$ret" -eq 126 ] || [ "$ret" -eq 127 ]; then
more "$@"
ret="$?"
if [ "$ret" -eq 126 ] || [ "$ret" -eq 127 ]; then
echo "Couldn't find a pager!" 1>&2
echo "Set the \$PAGER environment variable to your desired pager." 1>&2
exit 1
fi
fi
賢明な編集者
#!/bin/sh
ret="$?"
# Prevent recursive loops, where these values are set to this script
p="$(which sensible-editor)"
[ "$(which $EDITOR || true)" = "$p" ] && EDITOR=
[ "$(which $VISUAL || true)" = "$p" ] && VISUAL=
[ "$(which $SELECTED_EDITOR || true)" = "$p" ] && SELECTED_EDITOR=
if [ -n "$VISUAL" ]; then
${VISUAL} "$@"
ret="$?"
if [ "$ret" -ne 126 ] && [ "$ret" -ne 127 ]; then
exit "$ret"
fi
fi
if [ -r ~/.selected_editor ]; then
. ~/.selected_editor 2>/dev/null || true
elif [ -z "$EDITOR" ] && [ -z "$SELECTED_EDITOR" ] && [ -t 0 ]; then
select-editor && . ~/.selected_editor 2>/dev/null || true
fi
${EDITOR:-${SELECTED_EDITOR:-editor}} "$@"
ret="$?"
if [ "$ret" -eq 126 ] || [ "$ret" -eq 127 ]; then
nano "$@"
ret="$?"
if [ "$ret" -eq 126 ] || [ "$ret" -eq 127 ]; then
nano-tiny "$@"
ret="$?"
if [ "$ret" -eq 126 ] || [ "$ret" -eq 127 ]; then
vi "$@"
ret="$?"
if [ "$ret" -eq 126 ] || [ "$ret" -eq 127 ]; then
echo "Couldn't find an editor!" 1>&2
echo "Set the \$EDITOR environment variable to your desired editor." 1>&2
exit 1
fi
fi
fi
fi
exit "$ret"
スマートブラウザ
#!/bin/sh
# Prevent recursive loops, where these values are set to this script
p="$(which sensible-browser)"
[ "$(which $BROWSER || true)" = "$p" ] && BROWSER=
if test -n "$BROWSER"; then
${BROWSER} "$@"
ret="$?"
if [ "$ret" -ne 126 ] && [ "$ret" -ne 127 ]; then
exit "$ret"
fi
fi
if test -n "$DISPLAY"; then
if test -n "$GNOME_DESKTOP_SESSION_ID"; then
if test -x /usr/bin/gnome-www-browser; then
exec /usr/bin/gnome-www-browser "$@"
elif test -x /usr/bin/x-www-browser; then
exec /usr/bin/x-www-browser "$@"
elif test -x /usr/bin/gnome-terminal && test -x /usr/bin/www-browser; then
exec /usr/bin/gnome-terminal -x /usr/bin/www-browser "$@"
fi
fi
if test -x /usr/bin/x-www-browser; then
exec /usr/bin/x-www-browser "$@"
elif test -x /usr/bin/x-terminal-emulator && test -x /usr/bin/www-browser; then
exec /usr/bin/x-terminal-emulator -x /usr/bin/www-browser "$@"
fi
elif test -x /usr/bin/www-browser; then
exec /usr/bin/www-browser "$@"
fi
printf "Couldn't find a suitable web browser!\n" >&2
printf "Set the BROWSER environment variable to your desired browser.\n" >&2
exit 1;
本当に驚きましたが、このプロセスを経てから使用するエディタはnanoですF4。