https://rust-analyzer.github.io/manual.html#vimneovim
Use the file init.vim
use std::sync::atomic::{AtomicUsize, Ordering}; | |
use std::sync::Arc; | |
pub enum RunFlagState { | |
Running = 0, | |
Paused = 1, | |
Cancelled = 2, | |
} | |
// TODO: is there some mechanism to automate this (nightly)? |
#!/usr/bin/env python3 | |
""" | |
License: MIT License | |
Copyright (c) 2023 Miel Donkers | |
Very simple HTTP server in python for logging requests | |
Usage:: | |
./server.py [<port>] | |
""" | |
from http.server import BaseHTTPRequestHandler, HTTPServer |