I broke up with neovim....vim is my best friend now

This commit is contained in:
LinlyBoi
2023-04-30 08:14:07 +03:00
parent 0d185449c5
commit 4a4a6b1e81
5245 changed files with 468325 additions and 25 deletions

View File

@@ -0,0 +1,3 @@
pub fn add(a: u32, b: u32) -> u32 {
a + b
}

View File

@@ -0,0 +1 @@
pub mod add;

View File

@@ -0,0 +1,13 @@
use crate::calc::add::add;
fn document_definition_same_file() {
func1();
}
fn func1() {
unimplemented!();
}
fn document_definition_different_file() {
add(1, 2);
}

View File

@@ -0,0 +1,11 @@
fn document_diagnostics() {
unimplemented!();
}
fn broken1(
print
}
fn broken2()
broken(1);
}

View File

@@ -0,0 +1,3 @@
fn format () {
unimplemented!();
}

View File

@@ -0,0 +1,8 @@
mod calc;
mod documentdefinition;
mod documentformat;
fn main() {
println!("Hello, world!");
}