codemirror-ui で、ここで説明されているコマンドのいずれかを実行したい: https://codemirror.net/doc/manual.html#commands
次のコードがあります。
<ui-codemirror ui-codemirror-opts="editorOptions" ng-model="model"/>
<input type="button" ng-click="selectAll()" value="Select All"/>
コントローラ:
$scope.selectAll = new function() {
// how to cm.execCommand('selectAll')?
}