From 6d8ef6b12d37336a92c7a6b20b4b66f3ab424464 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Fri, 24 Apr 2015 22:49:29 -0700 Subject: 1189 - add extensions to all layers I'm sick of fighting vim's filetype detection. No modeline and files highlight in random colors. I add a modeline and it stops highlighting tangle comments. Even though it read my #$%# vimrc! Fuck this shite. --- cpp/090debug | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 cpp/090debug (limited to 'cpp/090debug') diff --git a/cpp/090debug b/cpp/090debug deleted file mode 100644 index d81071e9..00000000 --- a/cpp/090debug +++ /dev/null @@ -1,21 +0,0 @@ -//: Recipe to look at elements of containers. - -:(before "End Primitive Recipe Declarations") -_PRINT, -:(before "End Primitive Recipe Numbers") -Recipe_number["$print"] = _PRINT; -:(before "End Primitive Recipe Implementations") -case _PRINT: { - if (isa_literal(current_instruction().ingredients[0])) { - trace("run") << "$print: " << current_instruction().ingredients[0].name; - cout << current_instruction().ingredients[0].name; - break; - } - vector result(read_memory(current_instruction().ingredients[0])); - for (size_t i = 0; i < result.size(); ++i) { - trace("run") << "$print: " << result[i]; - if (i > 0) cout << " "; - cout << result[i]; - } - break; -} -- cgit 1.4.1-2-gfad0