# n command (Editor processor)

The n command positions the line pointer
down a specified number of lines from the current position. Followed
by pressing ENTER, the n command redisplays the
current line.

## Syntax

```
 n{number.lines}
```

## Parameter(s)

| number.lines | Specifies the number of lines from the current position the line pointer is positioned. |
| --- | --- |

## Description

n1 is the
same as pressing ENTER in Editor.

## Example(s)

```

 n
 014 print customer-ID
 .n4
 018 print
```

## See also

- [b command (Editor processor)](https://d3codex.com/editor/b-command-editor-processor/)
- [Error messages](https://d3codex.com/editor/error-messages/)
- [g command (Editor processor)](https://d3codex.com/editor/g-command-editor-processor/)
- [l command (Editor processor)](https://d3codex.com/editor/l-command-editor-processor/)
- [Editor overview](https://d3codex.com/editor/editor-overview/)
- [t command (Editor processor)](https://d3codex.com/editor/t-command-editor-processor/)
- [Using the Enter key](https://d3codex.com/editor/using-the-enter-key/)

---
Source: https://d3codex.com/editor/n-command-editor-processor/ - part of the D3Codex reference.
