如何使用Ideavim查看命令历史记录

时间:2017-05-18 20:06:57

标签: vim ideavim

我可以使用// Read entire file in as array of strings $data = file("./ats.txt"); // Some text we want to remove $acc = 'user3'; // Filter out any lines that match $acc, // ignoring any leading or trailing whitespace // $filtered_data = array_filter( $data, function ($line) use ($acc) { return trim($line) !== $acc; } ) // If something changed, write the file back out if ($filtered_data !== $data) { file_put_contents('./ats.txt', implode('', $filtered_data)); } 在vim中这样做,但这不适用于Ideavim。

查看命令历史记录对于查找和替换命令历史记录非常有用,并且会使这个插件非常好。

0 个答案:

没有答案