Conemu:タスクファイルから1つのタブに複数のコンソールウィンドウを作成するにはどうすればよいですか?


29

タスクファイルから1つのタブに複数のコンソールウィンドウを作成する方法は?1つのタブに2×2のコンソールのグリッドを作成したい。新しいコンソールを作成し、「右へ」または「下へ」オプションを選択するときに、手動で行うことができます。ただし、起動時に自動的に作成されるようにします。オプション「開かれたタスクの自動保存/復元」は、何らかの理由で使用できません。したがって、唯一の方法はタスクで作成することです。だから、タスクで2×2グリッドを作成するにはどうすればよいですか?

回答:


44

これがタスクの内容です。ConEmuビルド120909でチェックイン。

>cmd -cur_console:n
cmd -cur_console:s1TVn
cmd -cur_console:s1THn
cmd -cur_console:s2THn

これは一例です。ConEmuでの分割は必要に応じて複雑になる場合があり、任意の比率の構成が可能です。スイッチの詳細については、プロジェクトwikiをご覧ください。-new_console-cur_console

新しいタスクを作成せずにすべてを実行するには

/cmdlist ConEmu.exeのスイッチがあります。

ショートカットコンテンツの使用例(デスクトップなど):

ConEmu -cmdlist cmd -cur_console:fn ||| cmd -cur_console:s1TVn ||| cmd -cur_console:s1THn ||| cmd -cur_console:s2THn

別のcmdファイルから実行する必要がありますか?以下にconsoles.cmd例を示します。

start ConEmu -cmdlist cmd -cur_console:fn ^|^|^| cmd -cur_console:s1TVn ^|^|^| cmd -cur_console:s1THn ^|^|^| cmd -cur_console:s2THn

このコマンドの実行方法を教えてください。私は試しましたが、これは私が得るものです。私は最新のビルドを持っています。
アリン

キーワードは「タスク」です。すでに起動したシェルからこれを実行しようとするのはなぜですか?セットアップタスク。
マキシマス

@Maximusこれはシェルコマンドであるという印象がありました。ありがとう。
アリン

1
あなたもシェルからこれを使用してもよいが@arinその必要性の-new_console:...ではなく-cur_console
マクシムス

@Maximus:そのタスクの例でウィンドウサイズはどのくらい正確に構成されていますか?たとえば、あなたがTwitter投稿したようなものを設定したいのですが、それは正方形のグリッドではありません。参照できるドキュメントはありますか?
Isxek

2

次の実装を思いつきました。Web開発プロジェクトに使用します。タスクランナー(例:gulp)、git、javascriptコンパイラ(例:typescript)などのコンソール。目標は4つのコンソールウィンドウを開き、ディレクトリを* .cmdを実行したディレクトリに変更することでした。変更しなければならない場合に備えて、バッチスクリプトの複数のコピーを持ちたくありませんでした。シェルをバッチにしたくなかったので、シェルをbashにしたかったのです。私はWindowsを使用しているため、bashシェルにはcygwinが必要です。

任意の名前の.cmdファイルを作成しました。私に電話しました4 consoles.cmd。Cygwinがインストールされています(私の場合は64ビットバージョン)。また、Cygwin chereパッケージがインストールされており、必要です。

4 consoles.cmd コンテンツ:

@echo off

for %%i in ("%~dp0..\..") DO (set dirVar=%%~ni)
for %%i in ("%~dp0.") DO (set dir2Var=%%~ni)

set finalValue=%dirVar% %dir2Var%

start C:\"Program Files"\ConEmu\ConEmu64.exe -cmdlist ^
C:\cygwin64\bin\bash -c "/bin/xhere /bin/bash.exe" -cur_console:fna:t:"%finalValue%":C:"C:\cygwin64\Cygwin.ico" ^|^|^| ^
C:\cygwin64\bin\bash -c "/bin/xhere /bin/bash.exe" -cur_console:s1TVna:t:"%finalValue%":C:"C:\cygwin64\Cygwin.ico" ^|^|^| ^
C:\cygwin64\bin\bash -c "/bin/xhere /bin/bash.exe" -cur_console:s1THna:t:"%finalValue%":C:"C:\cygwin64\Cygwin.ico" ^|^|^| ^
C:\cygwin64\bin\bash -c "/bin/xhere /bin/bash.exe" -cur_console:s2THna:t:"%finalValue%":C:"C:\cygwin64\Cygwin.ico"

ハードドライブがクラッシュした場合に備えて、バックアップのためにファイルホスティングサービスを導入し4 consoles.cmdました。また、開発マシン間で共有する際に便利です。

バッチスクリプトは、4つすべてのコンソールウィンドウのディレクトリを.cmdが存在するディレクトリに変更します。そこで、4つのコンソールウィンドウすべてでディレクトリを変更するディレクトリにハード シンボリックリンクを作成しました。シンボリックリンクは、標準のを指します4 consoles.cmd

シンボリックリンクを実行すると、4つのコンソールシェルの作業ディレクトリが、シンボリックリンクがファイルシステム上にある場所になります。

興味がある人のための私のgulpタスクランナーコード

package.json

{
  "name": "MyApp",
  "version": "1.0.0",
  "description": "",
  "main": "gulpfile.js",
  "private": true,
  "devDependencies": {
    "del": "^1.2.0",
    "gulp": "^3.9.0",
    "gulp-batch": "^1.0.5",
    "gulp-concat": "^2.5.2",
    "gulp-imagemin": "^2.2.1",
    "gulp-minify-css": "^1.1.6",
    "gulp-ng-annotate": "^1.0.0",
    "gulp-plumber": "^1.0.1",
    "gulp-rename": "^1.2.2",
    "gulp-sourcemaps": "^1.5.2",
    "gulp-uglify": "^1.2.0",
    "gulp-watch": "^4.2.4",
    "imagemin-pngquant": "^4.1.0"
  },
  "author": "Author",
  "license": "ISC"
}

bower.json

{
  "name": "MyProject",
  "version": "1",
  "license": "MIT",
  "private": true,
  "ignore": [
    "**/.*",
    "node_modules",
    "bower_components"
  ],
  "dependencies": {
    "bootstrap": "~3.3.4",
    "jquery": "~2.1.3",
    "angular": "~1.4.0",
    "angular-route": "~1.4.0",
    "angular-animate": "~1.4.0",
    "font-awesome": "~4.3.0",
    "underscore": "~1.8.3",
    "bootstrap-datepicker": "~1.4.0",
    "angularjs-toaster": "~0.4.12",
    "angular-scroll": "~0.7.0",
    "moment": "~2.10.2",
    "angular-loading-bar": "~0.7.1"
  }
}

gulpfile.js

'use strict';

var gulp = require('gulp');
var batch = require('gulp-batch');
var sourcemaps = require('gulp-sourcemaps');
var minifycss = require('gulp-minify-css');
var uglify = require('gulp-uglify');
var rename = require('gulp-rename');
var concat = require('gulp-concat');
var del = require('del');
var plumber = require('gulp-plumber');
var watch = require('gulp-watch');
var imagemin = require('gulp-imagemin');
var pngquant = require('imagemin-pngquant');
var ngAnnotate = require('gulp-ng-annotate');

gulp.task('default', ['clean'], function () {
    gulp.start('images', 'vendorCss', 'applicationCss', 'fontIcons', 'vendorJavascript', 'applicationJavascript');
});

gulp.task('clean', function (cb) {
    del(['./dist/*'], cb);
});

gulp.task('images', function () {
    return gulp.src([
            './content/img/**/*'
    ])
        .pipe(imagemin({
            optimizationLevel: 3,
            progressive: true,
            interlaced: true,
            svgoPlugins: [{ removeViewBox: false }],
            use: [pngquant()]
        }))
        .pipe(gulp.dest('./dist/img'));
});

gulp.task('fontIcons', function () {
    return gulp.src([
        './bower_components/bootstrap/dist/fonts/**.*',
        './bower_components/font-awesome/fonts/**.*'
    ])
        .pipe(gulp.dest('./dist/fonts'));

});

gulp.task('vendorCss', function () {
    return gulp.src([
        './bower_components/bootstrap/dist/css/bootstrap.css',
        './bower_components/font-awesome/css/font-awesome.css',
        './bower_components/angularjs-toaster/toaster.css',
        './bower_components/bootstrap-datepicker/dist/css/bootstrap-datepicker3.css',
        './bower_components/angular-loading-bar/build/loading-bar.css'
    ])
        .pipe(concat('vendor.css'))
        .pipe(gulp.dest('./dist/css'))
        .pipe(rename({ suffix: '.min' }))
        .pipe(minifycss())
        .pipe(gulp.dest('./dist/css'));
});

gulp.task('vendorJavascript', function () {
    return gulp.src([
            './bower_components/jquery/dist/jquery.js',
            './bower_components/angular/angular.js',
            './bower_components/angular-route/angular-route.js',
            './bower_components/angular-resource/angular-resource.js',
            './bower_components/angular-animate/angular-animate.js',
            './bower_components/angular-scroll/angular-scroll.js',
            './bower_components/angular-loading-bar/build/loading-bar.js',
            './bower_components/angularjs-toaster/toaster.js',
            './bower_components/bootstrap/dist/js/bootstrap.js',
            './bower_components/bootstrap-datepicker/dist/js/bootstrap-datepicker.js',
            './bower_components/underscore/underscore.js',
            './bower_components/moment/moment.js'
    ])
        .pipe(sourcemaps.init())
        .pipe(concat('vendor.js'))
        .pipe(gulp.dest('./dist/script'))
        .pipe(uglify())
        .pipe(rename('vendor.min.js'))
        .pipe(sourcemaps.write('.'))
        .pipe(gulp.dest('./dist/script'));
});

gulp.task('applicationCss', function () {
    return gulp.src([
            './content/css/site.css',
            './content/css/animation.css'
    ])
        .pipe(plumber())
        .pipe(concat('app.css'))
        .pipe(gulp.dest('./dist/css'))
        .pipe(rename({ suffix: '.min' }))
        .pipe(minifycss())
        .pipe(gulp.dest('./dist/css'));
});

gulp.task('applicationJavascript', function () {
    return gulp.src([
            './angular/**/*.js'
    ])
        .pipe(plumber())
        .pipe(ngAnnotate())
        .pipe(sourcemaps.init())
        .pipe(concat('app.js'))
        .pipe(gulp.dest('./dist/script'))
        .pipe(uglify())
        .pipe(rename('app.min.js'))
        .pipe(sourcemaps.write('.'))
        .pipe(gulp.dest('./dist/script'));

});

gulp.task('watchApplicationJavascript', ['applicationJavascript'], function () {
    watch('./angular/**/*.js', batch(function (events, done) {
        gulp.start('applicationJavascript', done);
    }));
});

gulp.task('watchApplicationCss', ['applicationCss'], function () {
    watch(['./content/css/site.css', './content/css/animation.css'], batch(function (events, done) {
        gulp.start('applicationCss', done);
    }));
});
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.