Writing Plugin

Writing Plugin 제목은 거창하게 썼지만, 플러그인이나 rc 파일 작성에 필요한 지식들을 메모해 둘 예정. Preview Window :botright pedit { file } :botright pedit Preview Window 에서 라인 출력 function! showInPreview(name, fileType, lines) let l:command = "silent! pedit! +setlocal\\ " . \ "buftype=nofile\\ nobuflisted\\ " . \ "noswapfile\\ nonumber\\ " . \ "filetype=" . a:fileType . " " . a:name exe l:command if has('nvim') let l:bufNr = bufnr(a:name) call nvim_buf_set_lines(l:bufNr, 0, -1, 0, a:lines) else call setbufline(a:name, 1, a:lines) endif endfunction stackExchange...

January 14, 2023 · nolleh

4-2.graphical Desktop

Graphical Desktop Graphical Desktop CLI or GUI. GUI is quick and easy. for repeated tasks, the CLI is often more efficient, while the GUI is easier to navigate if you do not remember all the details or do something only rarely. X Window System X window system is loaded as one of the final steps in boot process. It is often just called X. A service called the Display Manager keeps track of displays being provided and loads the X server (so-called, because it provides graphical services to applications, sometimes called X clients....

January 8, 2023 · nolleh

4-1.introduction

Graphical interface Learning Objectives By the end of this chapter, you should be able to: Manage graphical interface sessions. Perform basic operations using the graphical interface. Change the graphical desktop to suit your needs.

January 8, 2023 · nolleh

3-6.summary

Summary Chapter Summary A partition is a logical part of the disk. A filesystem is a method of storing/finding files on a hard disk. By dividing the hard disk into partitions, data can be grouped and separated as needed. When a failure or mistake occurs, only the data in the affected partition will be damaged, while the data on the other partitions will likely survive. The boot process has multiple steps, starting with BIOS, which triggers the boot loader to start up the Linux kernel....

January 8, 2023 · nolleh

3-5.linux Distribution Installation

Linux Distribution Installation Choosing a Linux Distribution Questions to Ask when Choosing a Distribution What is the main function of the system (server or desktop)? What types of packages are important to the organization? For example, web server, word processing, etc. How much hard disk space is required and how much is available? For example, when installing Linux on an embedded device, space is usually constrained. How often are packages updated?...

January 8, 2023 · nolleh