Daniel (dmilith) Dettlaff

Results 39 comments of Daniel (dmilith) Dettlaff

Ha! It works. I had to add unwrap() for RwLock since it's Result, but the key here is not to set .level() in initialization chain. Then it works like a...

I did it this way: ```rust use std::sync::RwLock; lazy_static! { static ref LOG_LEVEL: RwLock = RwLock::new(LevelFilter::Info); } /// Set log level dynamically at runtime fn set_log_level() { let level =...

I wish FreeBSD would be supported as 4th major operating system… It's very close in compatibility terms to macOS. How can we help?

I suggest looking on other commands built into FreeBSD - termcap, terminfo.

Would be great to support font per syntax highlight type.

same here. Even after removing c-m indices from model! Please help.

You may treat TM2 as TM1 without plugin support. I saw this feature done through ruby and it was tmbundle. Can You see for it in old peepOpen builds?

Just cherry pick it, and ignore my working branch.

Yeah, autotools is a complete mess. I don't understand why maintainer doesn't provide tarball with autotools configure script generated. It's a mess.

I lost last few days trying to read a freaking C++ function returning std::string… to use it from Rust side… STL is a hellhole of complexity… and I've failed :(...