1 个不稳定版本
0.1.0 | 2020年7月22日 |
---|
#26 在 #opening
28 每月下载次数
14KB
59 行
open-file
在编辑器中打开文件
使用方法
use open_file;
fn main() {
open_file::open(String::from("Cargo.toml"), Some(String::from("kate")));
}
lib.rs
:
在编辑器中打开文件
使用方法
extern crate open_file;
fn main() {
open_file::open(String::from("Cargo.toml"), Some(String::from("kate")));
}